createSystemTemp method

FilePath createSystemTemp ([String prefix ])

Creates a temporary directory in the system temp directory. See Directory.systemTemp and Directory.createTempSync. If prefix is missing or null, the empty string is used for prefix.

Implementation

static FilePath createSystemTemp([String prefix]) {
  return new FilePath(Directory.systemTemp.createTempSync(prefix));
}