Windows编程
胡萝卜yueh
这个作者很懒,什么都没留下…
展开
-
【C++】Windows系统&Linux系统获取uuid统一通用代码
// ConsoleApplication1.cpp: 定义控制台应用程序的入口点。//#include "stdafx.h"#include <stdio.h>#include <string>#include <iostream>#ifdef WIN32#include <objbase.h>#else#incl...原创 2018-08-30 16:17:25 · 4697 阅读 · 1 评论 -
【C++】判断文件是否存在
#include <iostream>#include <fstream>using namespace std;int main( void ){ fstream _file; _file.open("./文件夹/*.dat", ios::in); if(!_file) { cout<&...原创 2018-08-31 10:26:09 · 971 阅读 · 0 评论 -
【C++】Windows创建文件夹
带有文件名的文件夹路径 #include<iostream>#include<windows.h>using namespace std;int main(){ char *fileName=".\\bin\\*.txt",*tag,path[1000]; strcpy(path,fileName); int a=0; for(tag=fileNa...原创 2018-08-31 16:28:03 · 1346 阅读 · 0 评论 -
【C++】Windows操作系统MAC地址获取
// ConsoleApplication1.cpp: 定义控制台应用程序的入口点。//#include "stdafx.h"#include <windows.h>#include <iphlpapi.h> // API GetAdaptersInfo 头文件#include <shlwapi.h> // API ...原创 2018-08-30 10:06:36 · 843 阅读 · 0 评论 -
【C++】命令行方式获取主板序列号
// ConsoleApplication1.cpp: 定义控制台应用程序的入口点。//#include "stdafx.h"#if !defined(AFX_DD71A3C0_A52F_4C38_B062_8E05785607DC__INCLUDED_)#define AFX_DD71A3C0_A52F_4C38_B062_8E05785607DC__INCLUDED_...原创 2018-08-30 11:10:08 · 8075 阅读 · 0 评论