How to move and recreate a folder at the same time?

Googlebot

I have a folder called statistics in an Ubuntu server in which data files are regularly stored. How can I rename statistics folder to backup-xx while re-creating statistics folder to be available for storing new files?

The files in statistics folder is created by PHP file_put_contents.

I prefer renaming the folder, as there are many files in the statistics folder.

Kusalananda
mv statistics backup-xx && mkdir statistics

This would rename the existing statistics directory to backup-xx, and if that succeeds it would carry on to create a new statistics directory.

For a more atomic operation, consider creating a directory statistics-001 (or similar, maybe by replacing 001 with today's date in a suitable format), and a symbolic link to it called statistics:

mkdir statistics-001
ln -s statistics-001 statistics

When you want to "rotate" this so that new data goes into a clean directory, create the directory first, then recreate the statistics link to it:

mkdir statistics-002
ln -sf statistics-002 statistics

mv statistics-001 backup-001

This way, any program writing to the statistics directory (i.e. the directory that this symbolic link points to) will never1 fail to find it.

If you need special permissions or ownership set on the directory that statistics points to, set these before (re-)creating the link.

1Or rather, this way, the time that a program would be without a valid target directory is minimized as much as practically possible using standard Unix tools.

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

How to move and rotate an image at the same time in Corona?

来自分类Dev

How to Move EntityFramework DataModel to separate folder in Same project

来自分类Dev

How to move directory into a directory with the same name?

来自分类Dev

How to perform multiple list slices at the same time?

来自分类Dev

Repeating same analysis decreases completion time. How to avoid that?

来自分类Dev

how to move or copy work item under a team to another team within same project in Azure Devops?

来自分类Dev

How to create localStorage for the same domain with www. at the same time or at the next visit?

来自分类Dev

How to recreate excel's Long type to Date type conversion in scala

来自分类Dev

Using Ansible, How do I install multiple RPMs with yum at the same time?

来自分类Dev

RethinkDB - Filtering and matching at the same time

来自分类Dev

Run AVD and VirtualBox at the same time

来自分类Dev

How to create a folder within a folder in sysfs

来自分类Dev

How to move inner content with DOMDocumentFragment?

来自分类Dev

How to make a node move whenever mouse is move over the scene (in JavaFX)?

来自分类Dev

How to get parent folder of a directory

来自分类Dev

How to decrypt GnuPG encrypted folder?

来自分类Dev

Why can't I have a folder and a file with the same name?

来自分类Dev

two ajax functions at the same time? not working

来自分类Dev

Ask for publish permissions at the same time as read for achievements

来自分类Dev

如何调用recreate()?

来自分类Dev

Jquery : How to move TD to another TR?

来自分类Dev

How to move to down of the page using button in bootstrap

来自分类Dev

How to move duplicate rows into columns with python

来自分类Dev

In Cocoa: How to set permission to read/write to a folder?

来自分类Dev

How to specify work folder in SAS from registry

来自分类Dev

Recreate bounce easing with spring easing

来自分类Dev

how to convert indian time into London time

来自分类Dev

jQuery move/append multiple items with same class name, inside parent div only

来自分类Dev

Cannot save modified entity and new entity at the same time

Related 相关文章

  1. 1

    How to move and rotate an image at the same time in Corona?

  2. 2

    How to Move EntityFramework DataModel to separate folder in Same project

  3. 3

    How to move directory into a directory with the same name?

  4. 4

    How to perform multiple list slices at the same time?

  5. 5

    Repeating same analysis decreases completion time. How to avoid that?

  6. 6

    how to move or copy work item under a team to another team within same project in Azure Devops?

  7. 7

    How to create localStorage for the same domain with www. at the same time or at the next visit?

  8. 8

    How to recreate excel's Long type to Date type conversion in scala

  9. 9

    Using Ansible, How do I install multiple RPMs with yum at the same time?

  10. 10

    RethinkDB - Filtering and matching at the same time

  11. 11

    Run AVD and VirtualBox at the same time

  12. 12

    How to create a folder within a folder in sysfs

  13. 13

    How to move inner content with DOMDocumentFragment?

  14. 14

    How to make a node move whenever mouse is move over the scene (in JavaFX)?

  15. 15

    How to get parent folder of a directory

  16. 16

    How to decrypt GnuPG encrypted folder?

  17. 17

    Why can't I have a folder and a file with the same name?

  18. 18

    two ajax functions at the same time? not working

  19. 19

    Ask for publish permissions at the same time as read for achievements

  20. 20

    如何调用recreate()?

  21. 21

    Jquery : How to move TD to another TR?

  22. 22

    How to move to down of the page using button in bootstrap

  23. 23

    How to move duplicate rows into columns with python

  24. 24

    In Cocoa: How to set permission to read/write to a folder?

  25. 25

    How to specify work folder in SAS from registry

  26. 26

    Recreate bounce easing with spring easing

  27. 27

    how to convert indian time into London time

  28. 28

    jQuery move/append multiple items with same class name, inside parent div only

  29. 29

    Cannot save modified entity and new entity at the same time

热门标签

归档