cxfiler


Namecxfiler JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryAn intuitive, modern file explorer for use in a terminal
upload_time2024-12-29 18:22:19
maintainerNone
docs_urlNone
authorCharlie Koch
requires_python<4.0,>=3.9
licenseBSD-2-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            #  F.I.L.E.R.

###  (File Investigation with Less Effort and Remembering)

----------------------------------------


 FILER is an intuitive file explorer with modern input and ease-of-use.

##  Installation


 As FILER is a Python application, it is installed via ```pip```.

```
pip3 install cxfiler

```



 To fully get the most use out of FILER, you should also add the following to your shell profile ( ```.bashrc```, ```.bash_profile```, ```.zshrc```, etc.):

```
filer() {
	cxfiler
	cd $(cat $HOME/.cxfilerexit)
}

```



 This will create a shell function which will run FILER and then change directory to the directory FILER was pointed to when you quit.

#  Usage

----------------------------------------

##  Navigating the Filesystem

| Key | Description |
|---|---|
| &uarr; | Move the cursor up 1 entry |
| " | Move the cursor up 1 screenful |
| &darr; | Move the cursor down 1 entry |
| ? | Move the cursor down 1 screenful |
| &larr; | Move up to the parent directory of the current directory |
| &rarr; | Move into teh directory (if cursor is on a directory) |
| Enter | Open action menu / Select action menu item |
| B or ESC | Back out of a menu |
| Space | Select / Deselect item |
| A | Select / Deselect all |
| . | Show / hide hidden files |
| D | Show / hide directories |
| F | Show / hide non-directory files |
| H | Display help |
| Q | Quit |


##  Rename a File


 To rename a file, move the cursor onto a file and press ```Enter```. This will open the action menu. Move the cursor to "Rename" and press ```Enter```. Type the new name for the file and press ```Enter```. You can use the ```B```key or the ```ESC```key to back out of the rename operation.

##  Copy / Move Files


 To copy or move files, you must first select 1 or more files. To do this, move the cursor to a file, then press ```Space```to select it. You can press ```Space```on a previously selected file to deselect it. Once you have all the files selected that you want to copy or move, navigate to the directory you want to copy or move the files to. Press ```Enter```and then select "Copy to here" or "Move to here" and press ```Enter```again.

##  Delete Files


 To delete a single file, move the cursor onto the file you want to delete. Then, press ```Enter```to open the action menu. To delete multiple files, use the ```Space```key to select the files, then press ```Enter```to open the action menu. Once the action menu is open, select "Delete", and press ```Enter```again. You will be asked to confirm the delete by pressing ```Y```or cancel the delete by pressing ```N```. You can use the ```B```key or the ```ESC```key to back out of the delete operation.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cxfiler",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Charlie Koch",
    "author_email": "charles@cerrax.com",
    "download_url": "https://files.pythonhosted.org/packages/2e/47/3ef701c3ac837921e75f6556d384e0bcfd3972b936ba00e3263e9d4dc018/cxfiler-1.0.1.tar.gz",
    "platform": null,
    "description": "#  F.I.L.E.R.\n\n###  (File Investigation with Less Effort and Remembering)\n\n----------------------------------------\n\n\n FILER is an intuitive file explorer with modern input and ease-of-use.\n\n##  Installation\n\n\n As FILER is a Python application, it is installed via ```pip```.\n\n```\npip3 install cxfiler\n\n```\n\n\n\n To fully get the most use out of FILER, you should also add the following to your shell profile ( ```.bashrc```, ```.bash_profile```, ```.zshrc```, etc.):\n\n```\nfiler() {\n\tcxfiler\n\tcd $(cat $HOME/.cxfilerexit)\n}\n\n```\n\n\n\n This will create a shell function which will run FILER and then change directory to the directory FILER was pointed to when you quit.\n\n#  Usage\n\n----------------------------------------\n\n##  Navigating the Filesystem\n\n| Key | Description |\n|---|---|\n| &uarr; | Move the cursor up 1 entry |\n| \" | Move the cursor up 1 screenful |\n| &darr; | Move the cursor down 1 entry |\n| ? | Move the cursor down 1 screenful |\n| &larr; | Move up to the parent directory of the current directory |\n| &rarr; | Move into teh directory (if cursor is on a directory) |\n| Enter | Open action menu / Select action menu item |\n| B or ESC | Back out of a menu |\n| Space | Select / Deselect item |\n| A | Select / Deselect all |\n| . | Show / hide hidden files |\n| D | Show / hide directories |\n| F | Show / hide non-directory files |\n| H | Display help |\n| Q | Quit |\n\n\n##  Rename a File\n\n\n To rename a file, move the cursor onto a file and press ```Enter```. This will open the action menu. Move the cursor to \"Rename\" and press ```Enter```. Type the new name for the file and press ```Enter```. You can use the ```B```key or the ```ESC```key to back out of the rename operation.\n\n##  Copy / Move Files\n\n\n To copy or move files, you must first select 1 or more files. To do this, move the cursor to a file, then press ```Space```to select it. You can press ```Space```on a previously selected file to deselect it. Once you have all the files selected that you want to copy or move, navigate to the directory you want to copy or move the files to. Press ```Enter```and then select \"Copy to here\" or \"Move to here\" and press ```Enter```again.\n\n##  Delete Files\n\n\n To delete a single file, move the cursor onto the file you want to delete. Then, press ```Enter```to open the action menu. To delete multiple files, use the ```Space```key to select the files, then press ```Enter```to open the action menu. Once the action menu is open, select \"Delete\", and press ```Enter```again. You will be asked to confirm the delete by pressing ```Y```or cancel the delete by pressing ```N```. You can use the ```B```key or the ```ESC```key to back out of the delete operation.\n\n",
    "bugtrack_url": null,
    "license": "BSD-2-Clause",
    "summary": "An intuitive, modern file explorer for use in a terminal",
    "version": "1.0.1",
    "project_urls": {
        "Changelog": "https://gitlab.com/charles.w.koch/filer/-/blob/main/CHANGELOG.md",
        "Homepage": "http://cerrax.com",
        "Repository": "https://gitlab.com/charles.w.koch/filer"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b43038052f8586881e2e96e5905d779325f3698e4d7469d4d11065080a89c04b",
                "md5": "3eda7ae80bff39c9bb27636b4b9ac778",
                "sha256": "41a07424bf9c6c732ebbc378f66d7266f76fcf28e6913142a09017c4319231ca"
            },
            "downloads": -1,
            "filename": "cxfiler-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3eda7ae80bff39c9bb27636b4b9ac778",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 16181,
            "upload_time": "2024-12-29T18:22:17",
            "upload_time_iso_8601": "2024-12-29T18:22:17.450509Z",
            "url": "https://files.pythonhosted.org/packages/b4/30/38052f8586881e2e96e5905d779325f3698e4d7469d4d11065080a89c04b/cxfiler-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e473ef701c3ac837921e75f6556d384e0bcfd3972b936ba00e3263e9d4dc018",
                "md5": "3d785b260078db50f41364163362f6d2",
                "sha256": "9133b51aa36765b3a6de1b53a98bc4a4e7b3a952a4f77ef19d2c350b19df039a"
            },
            "downloads": -1,
            "filename": "cxfiler-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "3d785b260078db50f41364163362f6d2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 13019,
            "upload_time": "2024-12-29T18:22:19",
            "upload_time_iso_8601": "2024-12-29T18:22:19.673269Z",
            "url": "https://files.pythonhosted.org/packages/2e/47/3ef701c3ac837921e75f6556d384e0bcfd3972b936ba00e3263e9d4dc018/cxfiler-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-29 18:22:19",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "charles.w.koch",
    "gitlab_project": "filer",
    "lcname": "cxfiler"
}
        
Elapsed time: 1.25301s