Questions tagged «powershell-ise»

10
创建目录(如果不存在)
我正在编写一个PowerShell脚本来创建几个目录(如果它们不存在)。 文件系统看起来与此类似 D:\ D:\TopDirec\SubDirec\Project1\Revision1\Reports\ D:\TopDirec\SubDirec\Project2\Revision1\ D:\TopDirec\SubDirec\Project3\Revision1\ 每个项目文件夹都有多个修订版本。 每个修订文件夹都需要一个“报告”文件夹。 一些“修订”文件夹已经包含一个“报告”文件夹。但是,大多数不是。 我需要编写一个每天运行的脚本,以便为每个目录创建这些文件夹。 我可以编写脚本来创建一个文件夹,但是创建多个文件夹是有问题的。

6
在PowerShell中重新加载路径
如果我正在运行PowerShell ISE的实例,并且安装了可以修改PATH的东西,或者我在PowerShell之外以任何方式对其进行了修改,那么我需要重新启动PowerShell才能看到更新的PATH变量。 有没有一种方法可以从PowerShell内部重新加载路径而无需重新启动它?

3
在PowerShell中逐行读取文件
我想在PowerShell中逐行读取文件。具体来说,我想遍历文件,将每一行存储在循环中的变量中,并对该行进行一些处理。 我知道Bash等效: while read line do if [[ $line =~ $regex ]]; then # work here fi done < file.txt 关于PowerShell循环的文档不多。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.