Conas a chruthú comhad nua in Powershell?
new-item keyword creates a new file in the filesystem. The type of item new item creates depends on where the item is being created. Mar shampla, Is féidir le mír nua a chruthú chomh maith eochracha clárlann agus iontrálacha má úsáidtear sa chlár.
Type the following command in to create a new file in the current path:
ni {filename.extension}
The above is the alias for the following command…
nua-mhír {filename.extension}
Sampla
ni fun.txt
Is féidir le Paraiméadair a úsáid freisin le mír nua.
Cruthaíonn an méid seo a leanas comhad i an cosán atá ann faoi láthair le roinnt ábhar:
ni -n fun.txt -p . -it f -v 'this is some silly text'
In the above example we have added the -name, -path and -itemtype parameters with their default values. Omitting these will generate the same result.
ni fun.txt -v 'this is some silly text'
If you want to overwrite an existing file use the -force or -f parameter:
ni fun.txt -v 'this is some silly text' -f
Cruthaigh comhaid il sa chomhadlann reatha:
ni -it f -p 'file.txt', 'fun.txt'
Cruthaigh comhaid iolracha sa c:/ fréimhe agus rudaí eolaire
ni -it f -p 'c:\file.txt', 'c:\things\fun.txt'
Comhadlanna Cruthú
You can create a new directory instead of mkdir or md by using the new item command and setting the item type as directory.
ni fun -it d
Cruthaigh comhadlann nua sa fhréamh c:
ni -n fun -it d -p c:\
Cruthaigh comhadlann sa cosán atá ann faoi láthair:
ni -it d -p 'fun', 'silly'
Cruthaigh comhadlann sa c:/ fréimhe agus rudaí eolaire
ni -it d -p 'c:\folder', 'c:\things\fun'
The following table shows the parameters and it’s alias
| Parameter | Ailias | Sampla | Cur síos |
-name
|
-n or no parameter |
ni fun.txt
|
Specify the new item’s name |
-itemtype
|
-it
|
-it d nó -it dir nó -it directory-it f nó -it file |
Specify the type of item to create. Creates file by default. |
-force
|
-f |
-f |
Overwrite existing file. |
-value
|
-v
|
-v 'Some file content...'
|
Write content of file |
-path
|
-p
|
-p c:\
|
Path of where the new item should be created |
Some commands that is useful with the ni command:
ls – Get-ChildItem, lists files and directories of the current working directory. m.sh. ls
gc – Get-Content, view the contents of a file eg. gc fun.txt
md – mkdir, make directory eg. md mynewdirectory
rm– Remove-Item, remove directory or file

Conteúdo top de mais, parabéns!