convertPath method

String convertPath(
  1. String filePath
)

Converts the given posix filePath to conform to this provider's path context.

Implementation

String convertPath(String filePath) {
  if (pathContext.style == path.windows.style) {
    if (filePath.startsWith(path.posix.separator)) {
      filePath = r'C:' + filePath;
    }
    filePath = filePath.replaceAll(
      path.posix.separator,
      path.windows.separator,
    );
  }
  return filePath;
}