我正在尝试将文件的属性编辑为非隐藏在批处理脚本中。到目前为止我没有运气,有人可以用代码帮我吗?
答案 0 :(得分:1)
您可以使用该命令
批处理脚本中的attrib -H <filename>
。
答案 1 :(得分:0)
attrib -h "c:\filepath\Myfile.txt"
要么
#include <stdio.h>
#include <pcap.h>
int main(int argc, char *argv[])
{
char *dev, errbuf[PCAP_ERRBUF_SIZE];
dev = pcap_lookupdev(errbuf);
if (dev == NULL) {
fprintf(stderr, "Couldn't find default device: %s\n", errbuf);
return(2);
}
printf("Device: %s\n", dev);
return(0);
}
了解更多信息: Dependency Injection
答案 2 :(得分:0)
attrib -h #filenamehere#.txt
将#filehere#替换为文件路径