Make directory path: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 200: Line 200:


(<code>mkdir</code> also exists as a built-in function, but does not create nested subdirectories).
(<code>mkdir</code> also exists as a built-in function, but does not create nested subdirectories).

=={{header|PowerShell}}==
<lang PowerShell>
New-Item -Path ".\path\to\dir" -ItemType Directory -ErrorAction SilentlyContinue
</lang>


=={{header|Python}}==
=={{header|Python}}==