gvfs-rm(1) User Commands gvfs-rm(1)NAME
gvfs-rm - remove a directory entry using the VFS system
SYNOPSIS
gvfs-rm URI
DESCRIPTION
gvfs-rm removes a directory entry using the VFS system via a URI.
OPERANDS
The following operands are supported:
URI Specifies the file location in standard URI format.
EXAMPLES
Example 1: Remove a local file
example% gvfs-rm file:///tmp/example
Example 2: Remove a remote object
example% gvfs-rm smb://server/dir/example
ENVIRONMENT VARIABLES
See environ(5) for descriptions of the following environment variables: NLSPATH.
EXIT STATUS
The exit value 0 is returned regardless of success or failure.
FILES
The following files are used by this application:
/usr/bin/gvfs-rm Executable to remove a directory entry using the VFS system
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWgnome-gvfs |
+-----------------------------+-----------------------------+
|Interface stability |Volatile |
+-----------------------------+-----------------------------+
SEE ALSO gvfs-copy(1), gvfs-info(1), gvfs-less(1), gvfs-ls(1), gvfs-mkdir(1)gvfs-monitor-dir(1), gvfs-monitor-file(1), gvfs-mount(1), gvfs-move(1),
gvfs-rename(1), gvfs-open(1), gvfs-cat(1), gvfs-save(1), gvfs-trash(1), gvfs-tree(1), attributes(5), environ(5)NOTES
Written by Alvaro Lopez Ortega, Sun Microsystems Inc., 2008.
SunOS 5.11 25 Mar 2008 gvfs-rm(1)
Check Out this Related Man Page
gvfs-save(1) User Commands gvfs-save(1)NAME
gvfs-save - save information to a file using the VFS system
SYNOPSIS
gvfs-save [-b] [-c] [-a] [-p] [-v] [-e] URI
DESCRIPTION
gvfs-save saves information to a file using the VFS system.
OPTIONS
The following options are supported:
-b Create backup
-c Only create if not existing
-a Append to end of the file
-p When creating a file, restrict access to the current user only
-v Print etag that the end
-e The etag of the file being overwritting
EXAMPLES
Example 1: Append a string to the end of a local file
example% echo "hello" | gvfs-save file:///tmp/example
Example 2: Append a file to a remote file storing a backup
example% gvfs-cat file:///tmp/file | gvfs-save -b smb://server/dir/file
ENVIRONMENT VARIABLES
See environ(5) for descriptions of the following environment variables: NLSPATH.
EXIT STATUS
The exit value 0 is returned regardless of success or failure.
FILES
The following files are used by this application:
/usr/bin/gvfs-save Executable to save information to a file using the VFS system
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWgnome-gvfs |
+-----------------------------+-----------------------------+
|Interface stability |Volatile |
+-----------------------------+-----------------------------+
SEE ALSO gvfs-copy(1), gvfs-cat(1), gvfs-less(1), gvfs-ls(1), gvfs-mkdir(1)gvfs-monitor-dir(1), gvfs-monitor-file(1), gvfs-mount(1), gvfs-move(1),
gvfs-rename(1), gvfs-open(1), gvfs-rm(1), gvfs-info(1), gvfs-trash(1), gvfs-tree(1), attributes(5), environ(5)NOTES
Written by Alvaro Lopez Ortega, Sun Microsystems Inc., 2008.
SunOS 5.11 25 Mar 2008 gvfs-save(1)
Hi all,
I have the following question. Considder that in the directory /code the script remove.pl exists. What i want is to run this script and remove some files that exist in the directory /dir/tmp. I use the below code but it does not work.
system("cd /dir/code");
system("rm FileName");
... (6 Replies)
When I access a samba share from command line using gvfs-mount, I can not see anything in ~/.gvfs/ directory. See below:
ajitabhp:$ gvfs-mount smb://iomega-dstore/music/
ajitabhp:$ echo $?
0
ajitabhp:$ ls -l ~/.gvfs/
total 0
ajitabhp:$ ps -ef|grep gvfsd-smb
ajitabhp 10896 1 0 11:28 ? ... (2 Replies)
I am using ubuntu and I used to mount the remote machine directory using the menu 'Places -> Connect to Server' . And I will use SSH as service type.
Usually the mounted files will available in the ~/.gvfs directory.But now I could get the files in the GUI but I could not get the files in the... (0 Replies)
Hi,
I'm trying to write a script that checks gvfs to see if a mount exists so I can run it from network-manager's status hooks. I thought I'd pipe the output of gvfs-mount -l to grep for the particular mounts I care about. When I do this in a bash script:
cmnd="gvfs-mount -l | grep -i... (4 Replies)