Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是PowerShell的新手。这个结构在powershell中是什么意思:${c:a.txt}
谢谢。
来自Powershell 脚本:
根据变量语法,如果文件的路径用大括号括起来,前面有一个美元符号(如 ${C:\foo.txt}),它指的是文件的内容。如果将其用作 L 值,则分配给它的任何内容都将写入文件。当用作 R 值时,将从文件中读取。如果分配了对象,则在存储之前对其进行序列化。