我有一个包含在我需要写入文件的变量中的信息。我的脚本需要创建文件然后写入它。
这是我当前的脚本:
my $file_location = '/network/$custom_directory/$custom_filename';
open(my $file ">", $file_location) or die $!;
print $file "$variable_data";
close $file;
我感觉我的脚本被挂在了实际的文件创建上,而不是变量写入过程上。运行脚本时出现的错误是:在我尝试打开文件的行处“没有这样的文件或目录”。