我有一个 SSIS 包,旨在写入多个文件,这些文件的存储方式如下
\\server\MainFolder\DynamicField1\DynamicField2\File.csv
其中子文件夹 DynamicField1 和 DynamicField2 不一定存在,而是来自我为 ConnectionString 存储的变量。
当我从桌面运行包时,我收到以下消息:
[File [2]] Warning: The system cannot find the path specified.
错误继续说:
[File [2]] Error: Cannot open the datafile "\\server\folder\abcd\efgh\filename_20190606115901.csv".
这看起来是一个不错的文件名。
我尝试用破折号替换动态文件夹,以便文件名如下所示:
\\server\folder\abcd - efgh - filename_20190606115901.csv
这实际上似乎有效。问题是,会有数百个文件,最好将它们组织在两个级别的子文件夹中。
这是否意味着我不能即时创建文件夹?