是否可以使用批处理文件检测文件格式和文件编码?

发布于 2024-10-10 11:28:17 字数 51 浏览 1 评论 0原文

是否可以使用批处理文件检测文件格式和文件编码?如果特定文件不符合预期格式,会抛出错误吗?

Is it possible to detect file format and encoding of file using batch files? And if a particular file is not of intended format, throw an error?

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

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

发布评论

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

评论(1

若水微香 2024-10-17 11:28:17

作为一个 *nix 人,我想要跳到比批处理文件更强大的东西,比如 Python。 (或者 shell 脚本,但我假设您使用的是 Windows --- 您可能会研究 PowerShell,但我从未尝试过。)

Unix 对于此类事情有一个很棒的实用程序,它的名称是 文件。这里似乎有一个 Windows 版本:http://gnuwin32.sourceforge.net/packages/file。 htm

基本上,您运行 file [your filename here] 并且 file 吐出有关该文件的简介。例如:

$ file zdoom-2.4.1-src.7z 
zdoom-2.4.1-src.7z: 7-zip archive data, version 0.3

它并不总是正确的,并且并不意味着如果 file 说“这是一个 JPEG”,该文件实际上是一个 JPEG:它可能已损坏,等等。

另外,如果我将上面的 7z 存档重命名为“foo”:

$ file foo
foo: 7-zip archive data, version 0.3

... file 仍然会得到它。

As a *nix guy, I'd want to jump for something more powerful than a batch file, such as Python. (or a shell script, but I'm assuming you're using Windows --- you might look into PowerShell, but I've never tried it.)

Unix has a great utility for this sort of thing, it's named file. There appears to be a Windows version here: http://gnuwin32.sourceforge.net/packages/file.htm

Basically, you run file [your filename here] and file spits out a blurb about the file. For example:

$ file zdoom-2.4.1-src.7z 
zdoom-2.4.1-src.7z: 7-zip archive data, version 0.3

It's not always right, and it doesn't mean that if file says "this is a JPEG" that the file is actually a JPEG: it could be corrupt, etc.

Also, if I rename the above 7z archive to "foo":

$ file foo
foo: 7-zip archive data, version 0.3

... file will still get it.

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