프로그래밍 관련/프로그래밍 관련팁
바탕화면 경로 알아오는 API
AlrepondTech
2009. 11. 11. 20:05
반응형
=================================
=================================
=================================
c#
Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
자바 바탕화면 경로알기
System.getProperty("user.home");
윈도우바탕하면경로알기
TCHAR strPath[MAX_PATH];
SHGetSpecialFolderPath(0, strPath, CSIDL_DESKTOPDIRECTORY, FALSE);
=================================
=================================
=================================
반응형