批处理:将未知文件名转换为变量,以便稍后将其导入db2表

时间:2015-05-13 10:57:35

标签: batch-file db2

我想做的很简单,但由于找不到文件名,它无法正常工作:

我有一个带有未知文件名的.txt文件,稍后会导入到db2表中。

我在考虑使用这样的东西:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
   if([string isEqualToString:@" "])
   {
      //now iterate the whole string and find whether any word contains any value from your Abusive words Array and replace the word with blank space or *

    }

当我尝试运行批处理时,自SET FILEDIR=\\FileServer\TestDir SET FILE=%FILEDIR%\*.txt db2 -wz%LOG% import from %FILE% of del method p(....) insert into tablename (.......)

以来未读取该文件

1 个答案:

答案 0 :(得分:0)

SET FILEDIR=\\FileServer\TestDir  
rem SET FILE=%FILEDIR%\*.txt
for %%# in ("\\FileServer\TestDir\*.txt") do set "file=%%#"

db2 -wz%LOG% import from %FILE% of del method p(....) insert into tablename (.......)

如果找不到任何内容,最终您需要映射网络驱动器。