Package

os

Permalink

package os

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. os
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait BasePath extends AnyRef

    Permalink

    A path which is either an absolute Path, a relative RelPath, or a ResourcePath with shared APIs and implementations.

    A path which is either an absolute Path, a relative RelPath, or a ResourcePath with shared APIs and implementations.

    Most of the filesystem-independent path-manipulation logic that lets you splice paths together or navigate in and out of paths lives in this interface

  2. trait BasePathImpl extends BasePath

    Permalink
  3. case class CommandResult(exitCode: Int, chunks: Seq[Either[Bytes, Bytes]]) extends Product with Serializable

    Permalink

    Contains the accumulated output for the invocation of a subprocess command.

    Contains the accumulated output for the invocation of a subprocess command.

    Apart from the exit code, the primary data-structure is a sequence of byte chunks, tagged with Left for stdout and Right for stderr. This is interleaved roughly in the order it was emitted by the subprocess, and reflects what a user would have see if the subprocess was run manually.

    Derived from that, is the aggregate out and err StreamValues, wrapping stdout/stderr respectively, and providing convenient access to the aggregate output of each stream, as bytes or strings or lines.

  4. sealed trait FilePath extends BasePath

    Permalink

    Represents a value that is either an absolute Path or a relative RelPath, and can be constructed from a java.nio.file.Path or java.io.File

  5. sealed trait FileType extends AnyRef

    Permalink

    Simple enum with the possible filesystem objects a path can resolve to

  6. type Generator[+T] = geny.Generator[T]

    Permalink
  7. class GlobInterpolator extends AnyRef

    Permalink

    Lets you pattern match strings with interpolated glob-variables

  8. class Path extends FilePath with ReadablePath with BasePathImpl

    Permalink

    An absolute path on the filesystem.

    An absolute path on the filesystem. Note that the path is normalized and cannot contain any empty "", "." or ".." segments

  9. case class PathAppendRedirect(p: Path) extends ProcessOutput with Product with Serializable

    Permalink
  10. trait PathChunk extends AnyRef

    Permalink
  11. sealed trait PathConvertible[T] extends AnyRef

    Permalink
  12. case class PathRedirect(p: Path) extends ProcessInput with ProcessOutput with Product with Serializable

    Permalink
  13. case class PermSet(value: Int) extends Product with Serializable

    Permalink

    A set of permissions; can be converted easily to the rw-rwx-r-x form via toString, or to a set of PosixFilePermissions via toSet and the other way via PermSet.fromString/PermSet.fromSet

  14. case class PosixStatInfo(owner: UserPrincipal, permissions: PermSet) extends Product with Serializable

    Permalink
  15. trait ProcessInput extends AnyRef

    Permalink

    Represents the configuration of a SubProcess's input stream.

    Represents the configuration of a SubProcess's input stream. Can either be os.Inherit, os.Pipe, os.Path or a os.Source

  16. trait ProcessOutput extends AnyRef

    Permalink

    Represents the configuration of a SubProcess's output or error stream.

    Represents the configuration of a SubProcess's output or error stream. Can either be os.Inherit, os.Pipe, os.Path or a os.ProcessOutput

  17. trait ReadablePath extends AnyRef

    Permalink
  18. class RelPath extends FilePath with BasePathImpl with SegmentedPath

    Permalink

    A relative path on the filesystem.

    A relative path on the filesystem. Note that the path is normalized and cannot contain any empty or ".". Parent ".." segments can only occur at the left-end of the path, and are collapsed into a single number ups.

  19. case class ResourceNotFoundException(path: ResourcePath) extends Exception with Product with Serializable

    Permalink

    Thrown when you try to read from a resource that doesn't exist.

  20. class ResourcePath extends BasePathImpl with ReadablePath with SegmentedPath

    Permalink

    Represents path to a resource on the java classpath.

    Represents path to a resource on the java classpath.

    Classloaders are tricky: http://stackoverflow.com/questions/12292926

  21. sealed trait ResourceRoot extends AnyRef

    Permalink

    Represents a possible root where classpath resources can be loaded from; either a ResourceRoot.ClassLoader or a ResourceRoot.Class.

    Represents a possible root where classpath resources can be loaded from; either a ResourceRoot.ClassLoader or a ResourceRoot.Class. Resources loaded from classloaders are always loaded via their absolute path, while resources loaded via classes are always loaded relatively.

  22. trait SeekableSource extends Source

    Permalink

    A source which is guaranteeds to provide a SeekableByteChannel

  23. trait SegmentedPath extends BasePath

    Permalink
  24. case class Shellable(value: Seq[String]) extends Product with Serializable

    Permalink

    An implicit wrapper defining the things that can be "interpolated" directly into a subprocess call.

  25. trait Source extends Writable

    Permalink

    A source of bytes; must provide either an InputStream or a SeekableByteChannel to read from.

    A source of bytes; must provide either an InputStream or a SeekableByteChannel to read from. Can be constructed implicitly from strings, byte arrays, inputstreams, channels or file paths

  26. case class StatInfo(size: Long, mtime: FileTime, ctime: FileTime, atime: FileTime, fileType: FileType) extends Product with Serializable

    Permalink

    The result from doing an system stat on a particular path.

    The result from doing an system stat on a particular path.

    Created via stat! filePath.

    If you want more information, use stat.full

  27. class SubPath extends FilePath with BasePathImpl with SegmentedPath

    Permalink

    A relative path on the filesystem, without any .. or . segments

  28. class SubProcess extends AutoCloseable

    Permalink

    Represents a spawn subprocess that has started and may or may not have completed.

  29. case class SubprocessException(result: CommandResult) extends Exception with Product with Serializable

    Permalink

    Thrown when a shellout command results in a non-zero exit code.

    Thrown when a shellout command results in a non-zero exit code.

    Doesn't contain any additional information apart from the CommandResult that is normally returned, but ensures that failures in subprocesses happen loudly and won't get ignored unless intentionally caught

  30. trait WritableLowPri extends AnyRef

    Permalink
  31. case class proc(command: Shellable*) extends Product with Serializable

    Permalink

    Convenience APIs around java.lang.Process and java.lang.ProcessBuilder:

    Convenience APIs around java.lang.Process and java.lang.ProcessBuilder:

    - os.proc.call provides a convenient wrapper for "function-like" processes that you invoke with some input, whose entire output you need, but otherwise do not have any intricate back-and-forth communication

    - os.proc.stream provides a lower level API: rather than providing the output all at once, you pass in callbacks it invokes whenever there is a chunk of output received from the spawned process.

    - os.proc(...) provides the lowest level API: an simple Scala API around java.lang.ProcessBuilder, that spawns a normal java.lang.Process for you to deal with. You can then interact with it normally through the standard stdin/stdout/stderr streams, using whatever protocol you want

Value Members

  1. object /

    Permalink

    Extractor to let you easily pattern match on os.Paths.

    Extractor to let you easily pattern match on os.Paths. Lets you do

    @ val base/segment/filename = pwd
    base: Path = Path(Vector("Users", "haoyi", "Dropbox (Personal)"))
    segment: String = "Workspace"
    filename: String = "Ammonite"

    To break apart a path and extract various pieces of it.

  2. object BasePath

    Permalink
  3. object FilePath

    Permalink
  4. object FileType

    Permalink
  5. val Generator: geny.Generator.type

    Permalink
  6. object GlobInterpolator

    Permalink
  7. implicit def GlobSyntax(s: StringContext): GlobInterpolator

    Permalink
  8. object Inherit extends ProcessInput with ProcessOutput

    Permalink

    Inherit the input/output stream from the current process

  9. object Internals

    Permalink
  10. object Path

    Permalink
  11. object PathChunk

    Permalink
  12. object PathConvertible

    Permalink
  13. object PathError

    Permalink
  14. object PermSet extends Serializable

    Permalink
  15. object Pipe extends ProcessInput with ProcessOutput

    Permalink

    Pipe the input/output stream to the current process to be used via java.lang.Process#{getInputStream,getOutputStream,getErrorStream}

  16. object PosixStatInfo extends Serializable

    Permalink
  17. object ProcessInput

    Permalink
  18. object ProcessOutput

    Permalink
  19. object RelPath

    Permalink
  20. object ResourcePath

    Permalink
  21. object ResourceRoot

    Permalink
  22. object SeekableSource

    Permalink
  23. object Shellable extends Serializable

    Permalink
  24. object Source extends WritableLowPri

    Permalink
  25. object StatInfo extends Serializable

    Permalink
  26. object SubPath

    Permalink
  27. object SubProcess

    Permalink
  28. object copy

    Permalink

    Copy a file or folder from one path to another.

    Copy a file or folder from one path to another. Recursively copies folders with all their contents. Errors out if the destination path already exists, or is within the source path.

  29. object exists extends (Path) ⇒ Boolean

    Permalink

    Checks if a file or folder exists at the given path.

  30. object followLink extends (Path) ⇒ Option[Path]

    Permalink

    Attempts to any symbolic links in the given path and return the canonical path.

    Attempts to any symbolic links in the given path and return the canonical path. Returns None if the path cannot be resolved (i.e. some symbolic link in the given path is broken)

  31. object group extends (Path) ⇒ GroupPrincipal

    Permalink

    Get the owning group of the file/folder at the given path

  32. object hardlink

    Permalink

    Creates a hardlink between two paths

  33. val home: Path

    Permalink

    The user's home directory

  34. object isDir extends (Path) ⇒ Boolean

    Permalink

    Checks whether the given path is a directory

    Checks whether the given path is a directory

    Returns false if the path does not exist

  35. object isFile extends (Path) ⇒ Boolean

    Permalink

    Checks whether the given path is a regular file

    Checks whether the given path is a regular file

    Returns false if the path does not exist

  36. object isLink extends (Path) ⇒ Boolean

    Permalink

    Checks whether the given path is a symbolic link

    Checks whether the given path is a symbolic link

    Returns false if the path does not exist

  37. object list extends (Path) ⇒ IndexedSeq[Path]

    Permalink

    Returns all the files and folders directly within the given folder.

    Returns all the files and folders directly within the given folder. If the given path is not a folder, raises an error. Can be called with list.stream to return an iterator. To list files recursively, use walk

    For convenience os.list sorts the entries in the folder before returning them. You can disable sorted by passing in the flag sort = false.

  38. object makeDir extends (Path) ⇒ Unit

    Permalink

    Create a single directory at the specified path.

    Create a single directory at the specified path. Optionally takes in a PermSet to specify the filesystem permissions of the created directory.

    Errors out if the directory already exists, or if the parent directory of the specified path does not exist. To automatically create enclosing directories and ignore the destination if it already exists, using os.makeDir.all

  39. object move

    Permalink

    Moves a file or folder from one path to another.

    Moves a file or folder from one path to another. Errors out if the destination path already exists, or is within the source path.

  40. object mtime extends (Path) ⇒ Long

    Permalink

    Gets the mtime of the given file or directory

  41. object owner extends (Path) ⇒ UserPrincipal

    Permalink

    Get the owner of the file/folder at the given path

  42. object perms extends (Path) ⇒ PermSet

    Permalink

    Get the filesystem permissions of the file/folder at the given path

  43. val pwd: Path

    Permalink

    The current working directory for this process.

  44. object read extends (ReadablePath) ⇒ String

    Permalink

    Reads the contents of a os.Path or other os.Source as a java.lang.String.

    Reads the contents of a os.Path or other os.Source as a java.lang.String. Defaults to reading the entire file as UTF-8, but you can also select a different charSet to use, and provide an offset/count to read from if the source supports seeking.

  45. object readLink extends (Path) ⇒ FilePath

    Permalink

    Reads the destination that the given symbolic link is pointed to

  46. val rel: RelPath

    Permalink
  47. object remove extends (Path) ⇒ Boolean

    Permalink

    Roughly equivalent to bash's rm -rf.

    Roughly equivalent to bash's rm -rf. Deletes any files or folders in the target path, or does nothing if there aren't any

  48. def resource(implicit resRoot: ResourceRoot = ...): ResourcePath

    Permalink
  49. val root: Path

    Permalink

    The root of the filesystem

  50. object size extends (Path) ⇒ Long

    Permalink

    Gets the size of the given file or folder

    Gets the size of the given file or folder

    Throws an exception if the file or folder does not exist

    When called on folders, returns the size of the folder metadata (i.e. the list of children names), and not the size of the folder's recursive contents. Use os.walk if you want to sum up the total size of a directory tree.

  51. object stat extends (Path) ⇒ StatInfo

    Permalink

    Reads in the basic filesystem metadata for the given file.

    Reads in the basic filesystem metadata for the given file. By default follows symbolic links to read the metadata of whatever the link is pointing at; set followLinks = false to disable that and instead read the metadata of the symbolic link itself.

    Throws an exception if the file or folder does not exist

  52. val sub: SubPath

    Permalink
  53. object symlink

    Permalink

    Creates a symbolic link between two paths

  54. object temp

    Permalink

    Alias for java.nio.file.Files.createTempFile and java.io.File.deleteOnExit.

    Alias for java.nio.file.Files.createTempFile and java.io.File.deleteOnExit. Pass in deleteOnExit = false if you want the temp file to stick around.

  55. object truncate

    Permalink

    Truncate the given file to the given size.

    Truncate the given file to the given size. If the file is smaller than the given size, does nothing.

  56. val up: RelPath

    Permalink
  57. object walk

    Permalink

    Recursively walks the given folder and returns the paths of every file or folder within.

    Recursively walks the given folder and returns the paths of every file or folder within.

    You can pass in a skip callback to skip files or folders you are not interested in. This can avoid walking entire parts of the folder hierarchy, saving time as compared to filtering them after the fact.

    By default, the paths are returned as a pre-order traversal: the enclosing folder is occurs first before any of it's contents. You can pass in preOrder = false to turn it into a post-order traversal, such that the enclosing folder occurs last after all it's contents.

    os.walk returns but does not follow symlinks; pass in followLinks = true to override that behavior. You can also specify a maximum depth you wish to walk via the maxDepth parameter.

  58. object write

    Permalink

    Write some data to a file.

    Write some data to a file. This can be a String, an Array[Byte], or a Seq[String] which is treated as consecutive lines. By default, this fails if a file already exists at the target location. Use write.over or write.append if you want to over-write it or add to what's already there.

Inherited from AnyRef

Inherited from Any

Ungrouped