Window shell - 作为命令输入的文件列表

发布于 2024-11-05 00:44:27 字数 200 浏览 0 评论 0 原文

在 Unix 中,我可以通过以下方式提供带有文件列表的命令:

mycommand folder/*

argc 将等于目录中的文件数,argv 等于目录中每个文件的名称。

然而,这在 Windows 上似乎并不相同。有没有办法模拟这个而不将文件夹中的所有文件作为命令的参数列出?

谢谢。

In Unix, I can provide a command with a list of files by doing that:

mycommand folder/*

The argc will then be equal to the number of files in the directory and argv to the name of each files in the directory.

However, this doesn't seem to be the same on Windows. Is there a way to emulate this without listing all the files of the folder as argument to the command?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

江湖正好 2024-11-12 00:44:27

Windows 命令提示符本身不支持通配符扩展。
如果“myprogram”是使用 Visual C++ 构建的应用程序,并且您可以控制它的构建方式,则可以向应用程序本身添加对通配符的支持,如 MSDN 文章 扩展通配符参数

Windows command prompt does not natively support wildcard expansion.
If "myprogram" is an application build with Visual C++ and you have control over how it is built, you can add support for wildcards to the application itself, as described in MSDN article Expanding Wildcard Arguments

心不设防 2024-11-12 00:44:27

来自此处

To delete every .bak file in every subfolder starting at C:\temp

C:\>FOR /R C:\temp\ %%G IN (*.bak) DO del %%G

另请查看FORFILES

From here:

To delete every .bak file in every subfolder starting at C:\temp

C:\>FOR /R C:\temp\ %%G IN (*.bak) DO del %%G

Also take a look on FORFILES.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文