mv

WebJar for mv

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

mv
Последняя версия

Последняя версия

2.1.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

mv
WebJar for mv
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/andrewrk/node-mv

Скачать mv

Имя Файла Размер
mv-2.1.1.pom
mv-2.1.1.jar 7 KB
mv-2.1.1-sources.jar 22 bytes
mv-2.1.1-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/mv/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>mv</artifactId>
    <version>2.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/mv/
implementation 'org.webjars.npm:mv:2.1.1'
// https://jarcasting.com/artifacts/org.webjars.npm/mv/
implementation ("org.webjars.npm:mv:2.1.1")
'org.webjars.npm:mv:jar:2.1.1'
<dependency org="org.webjars.npm" name="mv" rev="2.1.1">
  <artifact name="mv" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='mv', version='2.1.1')
)
libraryDependencies += "org.webjars.npm" % "mv" % "2.1.1"
[org.webjars.npm/mv "2.1.1"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.webjars.npm : mkdirp jar [0.5.1,0.6)
org.webjars.npm : ncp jar [2.0.0,2.1)
org.webjars.npm : rimraf jar [2.4.0,2.5)

Модули Проекта

Данный проект не имеет модулей.

Build Status

Usage:

var mv = require('mv');

mv('source/file', 'dest/file', function(err) {
  // done. it tried fs.rename first, and then falls back to
  // piping the source file to the dest file and then unlinking
  // the source file.
});

Another example:

mv('source/dir', 'dest/a/b/c/dir', {mkdirp: true}, function(err) {
  // done. it first created all the necessary directories, and then
  // tried fs.rename, then falls back to using ncp to copy the dir
  // to dest and then rimraf to remove the source dir
});

Another example:

mv('source/file', 'dest/file', {clobber: false}, function(err) {
  // done. If 'dest/file' exists, an error is returned
  // with err.code === 'EEXIST'.
});

Версии библиотеки

Версия
2.1.1