splitParts function

  1. @Deprecated('No longer exported')
List<String> splitParts(
  1. String anyPath
)

Get the parts from any style (linux/windows)

C:\windows
/opt/apps

First part is context dependent so this should onl be used in a file system io context on windows.

Implementation

@Deprecated('No longer exported')
List<String> splitParts(String anyPath) => _parts(anyPath);