上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 41 下一页

2019年11月8日

Linux C语言 检测文件是否存在

摘要: 头文件 unistd.h if(access(file_name, F_OK ) != -1 ) { // file exists } else { // file doesn't exist } You can also use R_OK, W_OK, and X_OK in place of F 阅读全文

posted @ 2019-11-08 10:38 liujx2019 阅读(1954) 评论(0) 推荐(0)

2019年11月7日

Logon Trigger Example (C++)

摘要: This C++ example shows how to create a task that is scheduled to execute Notepad when a user logs on. The task contains a logon trigger that specifies 阅读全文

posted @ 2019-11-07 14:55 liujx2019 阅读(289) 评论(0) 推荐(0)

Task Scheduler API Error 80041318

摘要: https://stackoverflow.com/questions/42307917/task-scheduler-api-error-80041318/42462235#42462235 Hi I am having an issue with the Task Scheduler API i 阅读全文

posted @ 2019-11-07 14:54 liujx2019 阅读(450) 评论(0) 推荐(0)

Task Scheduler Error Message: 80041318

摘要: Using the error lookup tool that comes with VC++ (errlook.exe, or "Error Lookup" on the Tools menu in the IDE), the error message for 0x80041318 is "T 阅读全文

posted @ 2019-11-07 14:52 liujx2019 阅读(299) 评论(0) 推荐(0)

Inno Setup [Run] Section 双引号嵌套

摘要: https://stackoverflow.com/questions/26257808/inno-setup-how-to-run-a-code-procedure-in-run-section-or-before-run-section [Run] Filename: "schtasks.exe 阅读全文

posted @ 2019-11-07 14:51 liujx2019 阅读(540) 评论(0) 推荐(0)

ubuntu16.04下ftp服务器的安装与配置

摘要: ubuntu16.04下ftp服务器的安装与配置 转载 由于要将本地程序上传至云服务器中,所以需要给云服务器端安装ftp服务器。记录一下ftp的安装过程,以便以后使用。服务器端所用系统为Ubuntu16.04. 1. 安装ftp服务器, apt-get install vsftpd ftp 2. 配 阅读全文

posted @ 2019-11-07 11:14 liujx2019 阅读(315) 评论(0) 推荐(0)

2019年11月1日

How to check if directory exist using C++ and winAPI

摘要: 如果看文件夹是否存在,必须看返回值是不是 INVALID_FILE_ATTRIBUTES 阅读全文

posted @ 2019-11-01 09:32 liujx2019 阅读(217) 评论(0) 推荐(0)

2019年10月30日

Ubuntu parted 命令 写在脚本里时要带 -s 参数

摘要: 否则会要求用户输入,造成脚本卡住。 阅读全文

posted @ 2019-10-30 16:42 liujx2019 阅读(254) 评论(0) 推荐(0)

Ubuntu syslog 太多的 named[1195]: error (network unreachable) resolving './DNSKEY/IN': 2001:7fd::1#53

摘要: Edit file /etc/default/bind9: 只使用 IPv4. 以上log是因为IPv6网络设置不当造成的。 阅读全文

posted @ 2019-10-30 14:59 liujx2019 阅读(2106) 评论(0) 推荐(0)

2019年10月29日

Ubuntu忘记超级用户root密码,重新设置密码 转载

摘要: 原文链接:https://blog.csdn.net/weixin_37909391/article/details/80691601 Ubuntu版本:Ubuntu 16.04.3 LTS1启动系统,在启动过程中,反复按Esc键或者shift键(本人亲测反复按或者长按都可以,没必要纠结),直到出现 阅读全文

posted @ 2019-10-29 13:43 liujx2019 阅读(207) 评论(0) 推荐(0)

上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 41 下一页

导航