CSharp___DllImport.Phone.IO.Storage.PathIsRemovableDevice C# (CSharp) Method

PathIsRemovableDevice() public static method

public static PathIsRemovableDevice ( string fullPath ) : bool
fullPath string
return bool
                public static bool PathIsRemovableDevice(string fullPath)
                {
                    /*Phone.IO.Storage.PathIsRemovableDevice("\\"); (false)
                    (lol, HDD cant be removable, y sure??..., just smash the device in the floor and its out)*/

                    return DllImportCaller.lib.StringCall("shcore", "PathIsRemovableDevice", fullPath) == 1;
                }
Phone.IO.Storage