CSKernelFile.cFileEx.fileGetPath C# (CSharp) Méthode

fileGetPath() public méthode

public fileGetPath ( String fullPath ) : String
fullPath String
Résultat String
        public String fileGetPath(String fullPath)
        {
            String path = "";
            String fileName = "";

            separatePathAndFileName(fullPath, ref path, ref fileName);

            return path;
        }