How do I best identify if a String is a Windows path or a UNIX style path?
Example Strings:
some_path = '/Volumes/network-drive/file.txt'
or
some_path = 'Z:\\network-drive\\file.txt'
One way is to check which slashes the String contains:
if '/' in some_path:
   # do something with UNIX Style Path
elif '\\' in some_path:
   # do something else with Windows Path 
Is there a better way to do this? I couldn't find suited methods in os.path or pathlib. 
 BTW, assume that the path string will come from another system so it doesn't help to check on which OS my code runs on.
