linux c语言 rename的用法-rename() does not work across different mount points, even if the same file system is mounted on both

最近在一个项目上执行文件的搬移功能时发现总是失败,临时录像文件存放于emmc的/tmp/目录下,当录像完成时候则调用rename企图将此文件搬到/mnt/sdcard/mmcblk1p1/(这是外置的sd卡)上面,但是每次执行rename的时候都返回失败了。

man 2  rename解释如下:

 1 RENAME(2)                                                           Linux Programmer‘s Manual                                                          RENAME(2)
 2
 3 NAME
 4        rename - change the name or location of a file
 5
 6 SYNOPSIS
 7        #include <stdio.h>
 8
 9        int rename(const char *oldpath, const char *newpath);
10
11 DESCRIPTION
12        rename()  renames  a  file, moving it between directories if required.  Any other hard links to the file (as created using link(2)) are unaffected.  Open
13        file descriptors for oldpath are also unaffected.
14
15        If newpath already exists it will be atomically replaced (subject to a few conditions; see ERRORS below), so that there is  no  point  at  which  another
16        process attempting to access newpath will find it missing.
17
18        If oldpath and newpath are existing hard links referring to the same file, then rename() does nothing, and returns a success status.
19
20        If newpath exists but the operation fails for some reason rename() guarantees to leave an instance of newpath in place.
21
22        oldpath can specify a directory.  In this case, newpath must either not exist, or it must specify an empty directory.
23
24        However, when overwriting there will probably be a window in which both oldpath and newpath refer to the file being renamed.
25
26        If oldpath refers to a symbolic link the link is renamed; if newpath refers to a symbolic link the link will be overwritten.
27
28 RETURN VALUE
29        On success, zero is returned.  On error, -1 is returned, and errno is set appropriately.
30
31 ERRORS
32        EACCES Write permission is denied for the directory containing oldpath or newpath, or, search permission is denied for one of the directories in the path
33               prefix of oldpath or newpath, or oldpath is a directory and does not allow write permission (needed to update the ..  entry).  (See also path_res‐
34               olution(7).)
35
36        EBUSY  The rename fails because oldpath or newpath is a directory that is in use by some process (perhaps as current working directory, or as root direc‐
37               tory, or because it was open for reading) or is in use by the system (for example as mount point), while  the  system  considers  this  an  error.
38               (Note  that  there is no requirement to return EBUSY in such cases—there is nothing wrong with doing the rename anyway—but it is allowed to return
39               EBUSY if the system cannot otherwise handle such situations.)

EFAULT oldpath or newpath points outside your accessible address space.

EINVAL The new pathname contained a path prefix of the old, or, more generally, an attempt was made to make a directory a subdirectory of itself.

EISDIR newpath is an existing directory, but oldpath is not a directory.

ELOOP Too many symbolic links were encountered in resolving oldpath or newpath.

EMLINK oldpath already has the maximum number of links to it, or it was a directory and the directory containing newpath has the maximum number of links.

ENAMETOOLONG
oldpath or newpath was too long.

ENOENT The link named by oldpath does not exist; or, a directory component in newpath does not exist; or, oldpath or newpath is an empty string.

ENOMEM Insufficient kernel memory was available.

ENOSPC The device containing the file has no room for the new directory entry.

ENOTDIR
A component used as a directory in oldpath or newpath is not, in fact, a directory. Or, oldpath is a directory, and newpath exists but is not a
directory.

ENOTEMPTY or EEXIST
newpath is a nonempty directory, that is, contains entries other than "." and "..".

EPERM or EACCES
The directory containing oldpath has the sticky bit (S_ISVTX) set and the process‘s effective user ID is neither the user ID of the file to be
deleted nor that of the directory containing it, and the process is not privileged (Linux: does not have the CAP_FOWNER capability); or newpath is
an existing file and the directory containing it has the sticky bit set and the process‘s effective user ID is neither the user ID of the file to
be replaced nor that of the directory containing it, and the process is not privileged (Linux: does not have the CAP_FOWNER capability); or the
file system containing pathname does not support renaming of the type requested.

EROFS The file is on a read-only file system.

EXDEV oldpath and newpath are not on the same mounted file system. (Linux permits a file system to be mounted at multiple points, but rename() does not
work across different mount points, even if the same file system is mounted on both.)

EXDEV oldpath and newpath are not on the same mounted file system. (Linux permits a file system to be mounted at multiple points, but rename() does not
work across different mount points, even if the same file system is mounted on both.)

CONFORMING TO
4.3BSD, C89, C99, POSIX.1-2001.

BUGS
On NFS file systems, you can not assume that if the operation failed the file was not renamed. If the server does the rename operation and then crashes,
the retransmitted RPC which will be processed when the server is up again causes a failure. The application is expected to deal with this. See link(2)
for a similar problem.

SEE ALSO
mv(1), chmod(2), link(2), renameat(2), symlink(2), unlink(2), path_resolution(7), symlink(7)

COLOPHON
This page is part of release 3.35 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at
http://man7.org/linux/man-pages/.

Linux 2009-03-30

注意看最后一个ERRORS类型

EXDEV oldpath and newpath are not on the same mounted file system. (Linux permits a file system to be mounted at multiple points, but rename() does not
work across different mount points, even if the same file system is mounted on both.)

回想以前使用rename的时候没有失败过,因为都是在一个磁盘上操作,现在是在两个磁盘上不同的挂载点。这正是rename失败的原因。

所以最后之只能放弃这个方法,采用system 的mv或者同时读写两个文件的方法测试后发现没多大差别效率都比较低。

时间: 2024-11-03 21:01:11

linux c语言 rename的用法-rename() does not work across different mount points, even if the same file system is mounted on both的相关文章

Linux中rename命令用法学习 修改文件名

如何用命令修改文件名呢?在linux下可以用rename命令,当然还可以使用mv命令,这里分享下linux rename命令的用法. 有一部分人说linux下没有rename命令,建议大家用mv命令.对rename命令和mv命令在重命名文件方面做一个比较,大家根据个人喜欢选择使用吧. mv命令,在man mv中对于mv命令的介绍:mv -move(rename) files 可以看到mv命令确实有重命名的功能,但是实际应用中,它只能对单个文件重命名,命令如下:mv [path/]oldfilen

转载~kxcfzyk:Linux C语言多线程库Pthread中条件变量的的正确用法逐步详解

Linux C语言多线程库Pthread中条件变量的的正确用法逐步详解 多线程c语言linuxsemaphore条件变量 (本文的读者定位是了解Pthread常用多线程API和Pthread互斥锁,但是对条件变量完全不知道或者不完全了解的人群.如果您对这些都没什么概念,可能需要先了解一些基础知识) 关于条件变量典型的实际应用,可以参考非常精简的Linux线程池实现(一)——使用互斥锁和条件变量,但如果对条件变量不熟悉最好先看完本文. Pthread库的条件变量机制的主要API有三个: int p

Linux下批量修改文件名(rename)

1.rename命令批量修改文件名, 其实Linux下可以使用别的办法来批量修改文件名, 不过rename实在太方便了 比如把所有的表为cdb1_* 修改为cdb_*的在本目录下只需要# rename 'cdb1'  'cdb'  * 以前都是写个for循环来做...想想多傻啊, 呵呵 rename还有更多的功能, 建议man rename下 From:http://www.hao32.com/unix-linux/42.html 2.批量更改文件名 rename 通过 man rename 命

嵌入式linux C++语言(二)——C++对C语言基础语法的扩展

嵌入式linux C++语言(二)--C++对C语言基础语法的扩展 C++是基于C语言扩展发展而来的面向对象的程序设计语言,本文将主要讨论C++语言基于C语言扩展的方面. 一.类型增强 1.类型检查更严格 在C语言中: const int a = 100; int *p = &a; 在C++语言中: const int a = 100;//必须在定义的时候初始化 const int *p = &a; 在C++语言中不能隐式转换数据类型. error: invalid conversion

嵌入式 Linux C语言(八)——存储类型、作用域、生命周期、链接属性

嵌入式 Linux C语言(八)--存储类型.作用域.生命周期.链接属性 一.存储类型 C语言中,每个变量和函数都有两个属性:数据类型和数据的存储类型. 变量的存储类型是指存储变量值的内存类型.变量的存储类型决定变量何时创建.何时销毁以及它的值将保持多久.计算机中有三个地方可以用于存储变量:普通内存,运行时堆和栈,硬件寄存器.变量的存储类型取决于声明变量的位置. C语言存储类别说明符: 说明符 用    法 auto 只在代码块内变量声明中被允许, 表示变量具有本地生存期 extern 出现在顶

嵌入式Linux C语言(四)——指针与数组

嵌入式Linux C语言(四)--指针与数组 数组是C语言内建的数据结构,彻底理解数组及其用法是开发高效应用程序的基础.数组和指针紧密关联,但又不是完全可以互换. 一.数组简介 数组是能用索引访问的同种类型元素的连续集合.数组的元素在内存中是相邻的,中间不存在空隙,数组的元素是相同类型的. 1.数组的解读 数组的定义:int a[10] = {0,1,2,3,4,5}; a[0]:数组的第一个元素,首元素(做左值时表示第0个元素的内存空间) &a:数组的首地址,是常量,不能做左值,类型等同int

Linux中gcc编译器的用法

在Linux环境下进行开发,gcc是非常重要的编译工具,所以学习gcc的基本常见用法时非常有必要的. 一.首先我们先说明下gcc编译源文件的后缀名类型 .c为后缀的文件,C语言源代码文件:  .a为后缀的文件,是由目标文件构成的档案库文件:  .C,.cc或.cxx 为后缀的文件,是C++源代码文件:  .h为后缀的文件,是程序所包含的头文件:  .i 为后缀的文件,是已经预处理过的C源代码文件:  .ii为后缀的文件,是已经预处理过的C++源代码文件:  .m为后缀的文件,是Objective

嵌入式 Linux C语言——C语言基础

嵌入式 Linux C语言--C语言基础 一.数据类型 1.基本数据类型 数据类型是创建变量的模型.变量名是连续存储空间的别名,程序中使用变量命名存储空间,通过变量可以使用存储空间.变量所占的内存大小取决于创建变量的数据类型. 2.有符号和无符号 有符号数中数据类型的最高位用于标识数据的符号,最高位为1表示为负数,最高位为0表示为正数. 计算机中有符号数通常使用补码表示,正数的补码为正数本身,负数的补码为负数的绝对值的各位取反后加1. 计算机中无符号数通常使用原码表示,无符号数默认为正数,没有符

嵌入式linux C++语言(四)——类与对象

嵌入式linux C++语言(四)--类与对象 类的设计和使用如下: #include <iostream>#include <stdlib.h>#include <stdio.h>#include <string.h>using namespace std;class Stack{public:    Stack(int size=1024);    ~Stack();    void init();    bool isEmpty();    bool