gpt4 book ai didi

c - 如何存储系统函数中的字符串

转载 作者:行者123 更新时间:2023-11-30 19:51:19 25 4
gpt4 key购买 nike

我想知道是否有一种方法可以存储当您调用某些函数时系统打印出来的内容,例如我希望我的程序读取我的 Wi-Fi key /控制台中出现的所有内容并将其存储在 .txt 文件中。这可能吗?如果没有,是否可以从系统打印出字符串?

以下是打印内容的代码:

#include <stdio.h>


int main()
{
system("netsh wlan show profile wifi name key=clear");



return 0;
}

最佳答案

我用比 @Ratul Shaker 和 @Basile Straynkevitch 建议的更简单的方法解决了这个问题。解决方案是在系统中使用>,但是在编译之前必须有一个.txt文件(可能会想办法让程序写入该文件)

代码:

#include <stdio.h>


int main()
{
system("netsh wlan show profile wifi name key=clear > C:\\somepath\\name.txt");



return 0;
}

关于c - 如何存储系统函数中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46257241/

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