gpt4 book ai didi

c - 如何将文件夹位置作为 C 中此文件夹锁定代码的输入?

转载 作者:太空宇宙 更新时间:2023-11-04 04:51:53 25 4
gpt4 key购买 nike

{
char foldername[15];
printf("Enter the foldername");
scanf("%s", foldername);
char command[100];
sprintf(command, "cacls %s /e /p everyone:n",foldername);
system(command);
return 0;
}

这是代码,我想手动输入文件夹的位置,但我不知道如何。

最佳答案

在这里你可以增加数组大小

char foldername[100];

并且可以给出文件夹的完整路径。

目前您给的文件夹名称为“stackoverflow_example

那么你可以给

/home/user/projects/stackoverflow_example

它会起作用

作为您的评论:

it works ! but for code to work , i need the executable file at the 
target folder directory, but i need to simply execute the code
from anywhere in computer to any folder in computer, by manually
giving location as input.

如果您提供完整路径,现在您可以从计算机的任何位置执行代码。

关于c - 如何将文件夹位置作为 C 中此文件夹锁定代码的输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14374382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com