本文整理汇总了Java中org.apache.hadoop.fs.RawLocalFileSystem.pathToFile方法的典型用法代码示例。如果您正苦于以下问题:Java RawLocalFileSystem.pathToFile方法的具体用法?Java RawLocalFileSystem.pathToFile怎么用?Java RawLocalFileSystem.pathToFile使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.hadoop.fs.RawLocalFileSystem
的用法示例。
在下文中一共展示了RawLocalFileSystem.pathToFile方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sameVolRename
import org.apache.hadoop.fs.RawLocalFileSystem; //导入方法依赖的package包/类
/**
* Rename srcPath to dstPath on the same volume. This is the same
* as RawLocalFileSystem's rename method, except that it will not
* fall back to a copy, and it will create the target directory
* if it doesn't exist.
*/
private void sameVolRename(Path srcPath,
Path dstPath) throws IOException {
RawLocalFileSystem rfs = (RawLocalFileSystem)this.rfs;
File src = rfs.pathToFile(srcPath);
File dst = rfs.pathToFile(dstPath);
if (!dst.getParentFile().exists()) {
if (!dst.getParentFile().mkdirs()) {
throw new IOException("Unable to rename " + src + " to "
+ dst + ": couldn't create parent directory");
}
}
if (!src.renameTo(dst)) {
throw new IOException("Unable to rename " + src + " to " + dst);
}
}
示例2: sameVolRename
import org.apache.hadoop.fs.RawLocalFileSystem; //导入方法依赖的package包/类
/**
* Rename srcPath to dstPath on the same volume. This is the same as
* RawLocalFileSystem's rename method, except that it will not fall back to a
* copy, and it will create the target directory if it doesn't exist.
*/
protected void sameVolRename(Path srcPath, Path dstPath) throws IOException {
RawLocalFileSystem rfs = (RawLocalFileSystem) this.rfs;
File src = rfs.pathToFile(srcPath);
File dst = rfs.pathToFile(dstPath);
if (!dst.getParentFile().exists()) {
if (!dst.getParentFile().mkdirs()) {
throw new IOException("Unable to rename " + src + " to " + dst
+ ": couldn't create parent directory");
}
}
if (!src.renameTo(dst)) {
throw new IOException("Unable to rename " + src + " to " + dst);
}
}
示例3: sameVolRename
import org.apache.hadoop.fs.RawLocalFileSystem; //导入方法依赖的package包/类
/**
* Rename srcPath to dstPath on the same volume. This is the same
* as RawLocalFileSystem's rename method, except that it will not
* fall back to a copy, and it will create the target directory
* if it doesn't exist.
*/
private void sameVolRename(Path srcPath,
Path dstPath) throws IOException {
RawLocalFileSystem rfs = (RawLocalFileSystem)this.rfs;
File src = rfs.pathToFile(srcPath);
File dst = rfs.pathToFile(dstPath);
if (!dst.getParentFile().exists()) {
if (!dst.getParentFile().mkdirs()) {
throw new IOException("Unable to rename " + src + " to "
+ dst + ": couldn't create parent directory");
}
}
try {
Process myProc = Runtime.getRuntime().exec("mv " + src.toString() + " " + dst.toString());
myProc.waitFor();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
throw new IOException("Unable to rename " + src + " to " + dst);
}
//if (!src.renameTo(dst)) {
// System.out.println("MapTask.sameVolRename(): src=" + src.toString() + " dst=" + dst.toString());
// throw new IOException("Unable to rename " + src + " to " + dst);
// }
}