Windows BAT:测试特定文件是否为空

时间:2011-03-30 08:38:51

标签: windows file batch-file

我想检查windows .bat文件中的特定文件是否为空。这是我的非工作脚本:

set dir="C:\test"
set file="%dir%\fff.txt"

cd %dir%
if %file%%~zi == 0 exit
ftp -s:"%dir%\ftp.action"
exit

你能帮我调试吗?

3 个答案:

答案 0 :(得分:7)

或者尝试

@echo off
set "dir=C:\temp"
set "file=%dir%\a.txt"

call :CheckEmpty "%file%"
goto :eof

:CheckEmpty
if %~z1 == 0 exit
ftp -s:"%dir%\ftp.action"
goto :eof

主要区别在于我使用函数调用并使用%~z1,因为修饰符仅适用于%1,%2 ..%9或for循环参数(如%% a ...)等参数/ p>

答案 1 :(得分:4)

使用文件比较的批处理解决方案:

type nul > blank
fc myfile blank > nul
if errorlevel 1 echo myfile is not empty

答案 2 :(得分:0)

试试这个:

    Const ForReading = 1

    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objFile = objFSO.OpenTextFile("c:\boot.ini", ForReading)


    Dim arrFileLines()
    i = 0
    Do Until objFile.AtEndOfStream
      Redim Preserve arrFileLines(i)
      arrFileLines(i) = objFile.ReadLine
      i = i + 1
    Loop
    objFile.Close