获取 SAS 中随机文件的文件大小 (Windows)
我知道 SAS 中的 finfo 函数返回文件大小作为 Unix 中的信息字段之一。 Windows 中有类似的吗?
我需要能够从 SAS/AF 代码中获取特定文件夹中使用的总磁盘空间。任何建议都将受到欢迎。
谢谢,
--A
I know that the finfo function in SAS returns filesize as one of the info fields in Unix. Is there an equivalent in Windows?
I need to be able to get the total disk space used in a particular folder from within SAS/AF code. Any suggestions would be welcome.
Thanks,
-- A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我之前发布过一个 sas 宏来读取 Windows 目录列表 此处。
i've previously posted a sas macro to read windows directory listing here.
如果您有 SAS 版本 9.2 或更高版本,则无论操作系统如何,此链接都将有效:
http://support.sas.com/kb/38/267.html
这是准确回答您的问题的链接的释义版本:
干杯
Rob
PS - 您查看过 www.runsubmit.com 吗?它就像 StackOverflow,但仅适用于 SAS 相关问题。
If you have SAS version 9.2 or later then this link will work regardless of OS:
http://support.sas.com/kb/38/267.html
Here is a paraphrased version of the link answering your question exactly:
Cheers
Rob
PS - Have you checked out www.runsubmit.com? It's just like StackOverflow but for SAS related questions only.
我要做一些简单的事情,编写一个实用函数来执行以下操作:
请注意,这对我来说没问题,因为我的要求是能够获取特定文件的大小。
I'm going to do something crufty and write a utility function that does the following:
Note that this is ok for me only because my requirements are to be able to get the size of a particular file.