본문 바로가기

My Study/Function

CreateDirectory

BOOL WINAPI CreateDirectory(
  __in      LPCTSTR lpPathName,
  __in_opt  LPSECURITY_ATTRIBUTES lpSecurityAttributes
);
디렉터리를 생성 하는 함수

lpPathName : 생성하고자 하는 디렉터리 이름을 지정.
lpSecurityAttributes : 보안 속성을 지정. Default = NULL

'My Study > Function' 카테고리의 다른 글

SearchPath  (0) 2010.02.25
RemoveDirectory  (0) 2010.02.25
GetFullPathName  (0) 2010.02.25
GetFileInformationByHandle  (0) 2010.02.25
SetFileAttributes  (0) 2010.02.25