New-ItemをIronPythonから使う時にはまった。
PowerShellからは、ファイル作成時にItemTypeというオプションが必要となった為、
IronPythonから使用する場合は、以下のようにする必要がある。
from powershell import * shell.new_item( r"c:\sample.txt" , ItemType="File" )
ちなみにFile => Directoryにするとディレクトリを指す。
PowerShellからは、ファイル作成時にItemTypeというオプションが必要となった為、
IronPythonから使用する場合は、以下のようにする必要がある。
from powershell import * shell.new_item( r"c:\sample.txt" , ItemType="File" )
ちなみにFile => Directoryにするとディレクトリを指す。