Skip to content

Instantly share code, notes, and snippets.

View leozzyzheng's full-sized avatar

zzy leozzyzheng

  • Tencent
  • Shen Zhen, China
View GitHub Profile
@leozzyzheng
leozzyzheng / main.cpp
Created March 12, 2017 07:51
List directory in win32
#include <assert.h>
#include <iostream>
#include <stack>
#include <string>
#include <windows.h>
class DirInfo {
public:
DirInfo(const wchar_t* dir_path) {
path = CleanPath(dir_path);