CSKernelFile.cFileEx.fileGetPath C# (CSharp) 메소드

fileGetPath() 공개 메소드

public fileGetPath ( String fullPath ) : String
fullPath String
리턴 String
        public String fileGetPath(String fullPath)
        {
            String path = "";
            String fileName = "";

            separatePathAndFileName(fullPath, ref path, ref fileName);

            return path;
        }