0バイトのファイルを作成する

0バイトのファイルを作成するサンプルです。

バッチ

サンプル:


copy nul c:\temp\test_0byte_1.txt



サンプル:


fsutil file createnew c:\temp\test_0byte_2.txt 0



Powershell

サンプル:


New-Item -ItemType file c:\temp\test_0byte_3.txt


VBS

(*)正確には0バイトではなくBOM(FF,FE)が入る2バイトファイルとなる。

サンプル:


Set objFSO = CreateObject("Scripting.FileSystemObject")

Set objFile = objFSO.CreateTextFile ("c:\temp\test_0byte_4.txt", ForWriting, True)

objFile.Close

set objFSO=Nothing



Python

サンプル:


open("c:\\temp\\test_0byte_5.txt", 'a').close()


コマンドサンプル一覧