ros2 launch arg filepath to contents
In a ros2 launch file if I declare a launch argument as,
DeclareLaunchArgument('my_file_path')
then later on I want to load the contents of that file as a parameter to some node, how can I get the contents of that file to do so from the LanuchConfiguration('my_file_path')
object?