
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Please consider starring the project to show your heart and support.
Project is based on this repo, show him some love please ;).
When copying or moving files, it's common for operating systems to automatically add an increment or 'copy' to duplicate file names. This does that for Ruby applications, with automatic platform detection and support for Linux, MacOs, and Windows conventions.
Add this line to your application's Gemfile:
gem 'filename_increment'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install filename_increment
All methods automatically detect the platform to use, unless platform is defined on the options.
FilenameIncrement.new('foo/bar.txt', platform: 'linux').to_s
# foo/bar (copy).txt
FilenameIncrement.new('foo/bar.txt', platform: 'win32').to_s
# foo/bar (2).txt
FilenameIncrement.new('foo/bar.txt', platform: 'darwin').to_s
# foo/bar copy.txt
Description: Check the file system, and automatically increment the file based on existing files. Thus, if the file name is foo.txt
, and foo (2).txt
already exists, the file will automatically be renamed to foo (3).txt
.
Also uses the correct conventions for Linux, Windows (win32), and MacOS (darwin).
Type: boolean
Default: nil
Description: Specify the platform conventions to use.
Type: String
Default: Uses Gem::Platform.local.os
. Valid values are linux
, win32
and darwin
.
Supported Operating Systems
Currently Windows, Darwin (MacOS), and Linux are supported. This library attempts to automatically use the correct conventions for each operating system. Please create an issue if you ecounter a bug.
If you use an operating system with different conventions, and you would like for this library to add support, please create an issue with a detailed description of those conventions, or feel free to do a pull request.
When a file is copied or moved, and the destination file path already exists, Linux uses the following conventions for incrementing the file name.
Source path | Destination path | Type | Directory1 |
---|---|---|---|
foo.txt | foo (copy).txt , foo (another copy).txt , foo (3rd copy).txt , ... | file | Same directory as source |
foo | foo (copy) , foo (another copy) , foo (3rd copy) , ... | directory | Same directory as source |
1 On Linux, when a file or folder is copied or moved to a different directory and another file or folder with the same name exists in that directory, you are prompted to choose a new name for the file or folder, or to cancel or skip the operation.
When a file is copied or moved, and the destination file path already exists, MacOS uses the following conventions for incrementing the file name.
Source path | Destination path | Type | Directory1 |
---|---|---|---|
foo.txt | foo copy.txt , foo copy 2.txt , ... | file | Same directory as source |
foo.txt | foo 2.txt , foo 3.txt , ... | file | Different directory than source |
foo | foo copy , foo copy 2 , ... | directory | Same directory as source |
1 MacOS uses different conventions for incrementing file names when the source file is copied, moved or renamed to a different directory, versus when the file is copied into the same directory.
When a file is copied or moved, and the destination file path already exists, Windows uses the following conventions for incrementing the file name.
Source path | Destination path | Type | Directory1 |
---|---|---|---|
foo.txt | foo - Copy.txt | file | Same directory as source |
foo.txt | foo (2).txt | file | Different directory than source |
foo (2).txt | foo (3).txt | file | Different directory than source |
foo | foo - Copy | directory | Same directory as source |
foo - Copy | foo - Copy (2) | directory | Same directory as source |
1 Windows uses different conventions for incrementing file names when the source file is copied, moved or renamed to a different directory, versus when the file is copied into the same directory. Also, when a folder is copied to a new directory, and the new directory already has a folder with the same name, Windows just merges the folders automatically.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the FilenameIncrement project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Unknown package
We found that filename_increment demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.