Virtual File System provides a single API for accessing various different file systems. It presents a uniform view of the files from various different sources, such as the files on local disk, on an HTTP server, or inside a Zip archive.

learn more… | top users | synonyms

1
vote
0answers
14 views

Why simple_rename() does nothing in ramfs?

Linux ramfs uses simple_rename(), but why in such function the new_dentry and old_inode are not linked to each other? Here is the source code of simple_rename() for your reference: int ...
0
votes
1answer
26 views

How to append to an existing file with WSO2 ESB (VFS)

I'm writing to a single file with a WSO2 ESB using a VFS endpoint. But this does override the file each time. How can I configure the endpoint to append the content? Or does this feature even exist? ...
1
vote
1answer
34 views

The equivalent of path_lookup() of linux 2.6 in linux 3.7

I am reading "Understanding the Linux Kernel" 3rd edition, by D.Bovet & M.Cesati. In the chapter about Virtual file systems, they refer to the function "path_lookup()" that does the lookup for a ...
0
votes
0answers
42 views

Is wildcard searching possible with Apache Commons VFS?

I'm just learning Apache Commons VFS. I'd like to search for a file in a certain directory, but I don't know the exact name of the file. I do, however, know a part of the name. To search for a file, ...
0
votes
0answers
4 views

WSO2 source editor doesn't save transports=“vfs”

Open Source View. Insert "transports="vfs"" into the original line. Click on "Save". Open again "Source View". You see that "transports="vfs"" is disappeared.
0
votes
0answers
19 views

Why do I get the “transport.vfs.FileURI parameter is missing” Warning?

With each start of the WSO2 ESB 4.5.1 (Windows 8) I get the following Warning while starting WSO2 ESB: WARN - PollTableEntry transport.vfs.FileURI parameter is missing in the proxy service ...
0
votes
1answer
23 views

WSO2 ESB: How to download a file over HTTP?

I want to download an XML file from a Web site using WSO2 ESB. Assume that the URL is static for the sake of simplicity. I have tried VFS both as a proxy service and an individual sequence without ...
0
votes
0answers
24 views

how to make commons VFS runs permanently

I'm using commons VFS to monitor certain folder for changes (mainly inserting new file), the program should runs permanently, I use the following code FileSystemManager fsManager = VFS.getManager(); ...
0
votes
1answer
79 views

Jboss 7.1.1 contents inside server/tmp/vfs gets full

I am deploying my application on JBOSS 7.1.1 but while doing this the standalone/tmp/vfs folder keeps increasing and my application also goes down. It occupies lots of space on my hard disk.Is ...
0
votes
1answer
452 views

ubuntu 10.0.4 gives kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) while booting

Hi i recently installed ubuntu 8.04 on my desktop and in the upgrades menu i gave upgrade to ubuntu 10.04.3 LTS but after installing it started giving me this error [ 0.694063] Kernel panic - not ...
1
vote
3answers
126 views

How can I enumerate all the file in a directory in vfs c or c++? [duplicate]

I need to enumerate all the file in a folder and then navigate to the subfolder and do the same (recursion? sure). Ideally the algorithm should work in the same way on linux & macos DISCLAIMER: ...
0
votes
0answers
17 views

Can I capture “process name” metadata on a VFS (e.g. Fuse)?

I would like files in my filesystem to have associated metadata including the name of the process which last modified the file. I was thinking it might be possible to have Fuse look for the process ...
1
vote
0answers
197 views

JBoss7 upgrade to java7, JBoss VFS

We have an spring application which dynamically loads components based in the lib folder. This application needs to be deployed on different AS, like Jetty,Tomcat,JBoss.. Now, JBoss has this VFS ...
0
votes
0answers
46 views

what is member 'd_lru' of dentry object used for in linux kernel?

I recently want to have some study about the dentry Cache mechanism in Linux kernel with version 2.6.38. I know member d_lru in dentry object is pointers for the list of unused dentries. Also every ...
0
votes
0answers
195 views

Very Simple Linux VFS Implementation

I'm somewhat stuck on this, being my first attempt at any type of kernel development. My project is a bit more complex than this, but what I'm stuck on is very basic. I want a read only file system ...
1
vote
0answers
83 views

Writing to harddisk from contiguous physical memory

I have an ARM based device, running linux, which is connected to a camera, and I'm trying to store captured frames to HD efficiently. I'm developing in user space, but can modify drivers at will I'm ...
0
votes
1answer
254 views

Accessing *.war classpath resources

I have a problem accessing VFS resources in JBoss using ClassLoader#getResources(-). I want to list all classpath resources (WEB-INF/classes/*) of some web application (*.war), so I can start with ...
1
vote
1answer
134 views

How do I return a response in an wso2 esb proxy with vfs JMS Sender?

I have a proxy service in WSO2 ESB 4.5.0 that is supposed to handle a SOAP-request from a webclient, send information to a JMS-topic and then respond to the the webclient. The problem is that when I ...
2
votes
1answer
122 views

Is java.io.FileDescriptor#sync() specific to a single FileDescriptor

I am looking to force synchronisation to disk after files are written at certain points in my application. Since it runs on Linux, I could get away with just running ...
1
vote
2answers
359 views

Virtual (flat) file system in C++

Essentially I need to implement a program to act as a user space file system that implements very simple operations such as viewing what is on the disk, copying files to and from the native file ...
0
votes
1answer
38 views

How to implement a client for file uploading to a WSO2-ESB proxy service?

I config an ESB proxy: ESB Proxy --> inSqquence --> outSequence --> clone --> VFS How to implement a client for file uploading to a WSO2-ESB proxy service?
1
vote
0answers
116 views

Configuring implicit TLS over FTP in Synapse VFS transport

We need to connect to a ftp-server which only allows implicit TLS over FTP on port 990. We are using WSO2 ESB 4.5.0 which support ftps and is built on the Synapse project. An example configuration in ...
1
vote
1answer
127 views

WSO2 ESB SFTP Listener not firing

i am testing some sample use cases with WSO2 where the ESB must scan an SFTP folder and perform some actions. Here is what i did: 1) I enabled the VFS transport listener in axis2.xml: ...
0
votes
1answer
150 views

Apache Commonfs VFS avoid growing temp dir

I have an issue with VFS. I developed a web application to paste a URL of a deploy package(zip file) into a textarea. You can view deploy scripts and at the end deploy the application. It runs on a ...
2
votes
1answer
170 views

VFS write file to non-existing folder

I write a file with vfs to a folder which does not exist. I expect an exception or creation of this folder. But none of them happen, instead there is a file created with the missing folder name (at ...
0
votes
1answer
177 views

StaticUserAuthenticator does not set FTP username in VFS2

I am trying to user the StaticUserAuthenticator with an FTP connection through ApacheVFS2 - I have the following code: this.fsOptions = new FileSystemOptions(); StaticUserAuthenticator auth = new ...
0
votes
1answer
110 views

How to configure FTP endpoint with @ in the username

We are using WSO2 to access different FTP and the username for a specific FTP does contain the '@' which is predefined character for the server config. Here an example of an Endpoint accessing such ...
0
votes
0answers
155 views

Commons VFS create a file example

I am having trouble finding an example of how to create a virtual file using commons VFS. All I need to do is create the file, and then be able to access it.
0
votes
1answer
198 views

Incomplete file transfer when downloading a big file using ChannelSftp

Scenario I am trying to download a big file (> 3 GB) using Apache VFS from an SFTP Server (Proftpd) programatically with Java. Apache VFS internally uses ChannelSftp from JSch. Environment Ubuntu ...
0
votes
1answer
94 views

How to create a large binary file in C for Virtual File System?

Basically in my project I have to create a VSF on unix os using gcc. I have made the architecture which consists of a meta block, header which contains the file descriptor and the file blocks. Now if ...
0
votes
1answer
106 views

How to append response message to a text file?

I need write the response message to a "response.xml" file. And the response should be appended to this file, I set parameter "Append" true, but no use, is completely overwritten every time. Anyone ...
1
vote
3answers
269 views

Why does a FTP send depend on its directory size?

We have a Proxy that is taking messages from a JMS queue and sends them to an FTP folder. We discovered now, that the sending to the FTP is very slow when the target directory on the FTP already ...
0
votes
1answer
59 views

Equivalents for these functions in SolFS?

I am making an extension for an application. My extension uses SolFS and I want to use it to redirect all file traffic to SolFS. To accomplish this I need a bit of help because SolFS has not the ...
0
votes
0answers
105 views

Unable to download file via VFS in windows machine?

I'm downloading a file from the FTP server using the below StandardFileSystemManager -> resolveFile and copyFrom(fileobject, Selectors.SELECT_SELF) The local folders were created automatically and ...
1
vote
1answer
507 views

How do I use JCIFS with apache VFS to access an SMB URL?

I am trying to access a folder on my local computer using an smb URL. my project is using the jars: commons-vfs2-2.0.jar and jcifs-1.3.17.jar (and all the other required jars). The code in it's ...
1
vote
1answer
1k views

Apache Commons VFS Maven Repository?

Any idea on which Maven repository to use in order to use Apache commons VFS libraries? Thanks. <dependency> <groupId>org.apache.commons</groupId> ...
1
vote
1answer
552 views

How do I monitor the progress of a file transfer in Apache Commons VFS?

Using Apache Commons VFS, how do I monitor the progress of a file transfer. I need to be able to do it with uploads and downloads. I also need to monitor progress over HTTP, FTP, SFTP and FTPS. I ...
0
votes
1answer
454 views

What are inode generation numbers?

I'm plannnig to implement a FUSE filesystem using low-level API and currently trying to understand fuse_entry_param structure. I wonder what unsigned long fuse_entry_param::generation actually means. ...
0
votes
3answers
573 views

copy .tar.gz files to folder

I want to copy contents of a .tar.gz files to 2 folder , It has around 20 files and total unzipped size will be >20 GB. I used Truezip for this . TFile archive = new ...
0
votes
2answers
168 views

WSO2 How to set VFS to a scheduled task

In wso2, VFS running default 5 minutes. I think this is bad for performance. I want VFS running when server is not busy. For example, maybe at 02:00 no body request, then VFS can work. I tried add ...
1
vote
1answer
176 views

WSO2 How to set scheduled task?

Now I have a FTP service. The config like this: http://wso2.org/project/esb/java/3.0.1/docs/samples/transport_samples.html#Sample254 . It works every interval time, default is 5 seconds. How to set ...
0
votes
1answer
120 views

WSO2 How to set ReplyFileName in VFS

I use VFS transform a file from txt to xml. My txt file name is:COS_201205071103_0000000001.txt. And the ReplyFileName must be COS_201205071103_0000000001.XML. I think I need get the txt file name and ...
0
votes
1answer
97 views

WSO2 How to transform file

Now I have a local file just like : <userCode>001</userCode><productCode>001</productCode><Fee>1.00</Fee> ...
0
votes
2answers
853 views

URI scheme is not “file”. Unable to read file from classpath

I have Java webapp and I am trying to read a file from classpth. if (fileName == null){ fileName = Thread.currentThread().getContextClassLoader().getResource("config.properties"); } ...
0
votes
2answers
158 views

How to check in linux kernel at vfs layer whether the file object is for a directory or a file

How to check in linux kernel at vfs layer whether the file object is for a directory or a file? I have found that there is a function called is_dx(dir) which checks for this but it is present in ...
2
votes
0answers
117 views

Is it possible to mount a remote storage to local file system of iOS?

Is it possible to implement a VFS driver on iOS, which can mount a remote storage like dropbox to local file system? I don't think it is allowed for a normal iOS devices, but how about jailbreak ...
1
vote
1answer
394 views

URI for nested zip files in Apache's common -vfs?

I have a zip file (let's say 'inside.zip') inside another zip file (let's say 'outside.zip'). I am using Apache's common-vfs2 Java library and providing a uri like zip:file:///path/to/outside.zip to ...
3
votes
2answers
131 views

Why does Linux boot with a few dentries initialized for root directory “/”

I am playing around Linux kernel code, especially the file system part. I've found that when the kernel boots, a few of dentry objects are allocated for root directory "/". Why dose it need to ...
2
votes
2answers
455 views

Any free java VFS library?

I'm looking for a free java library which will allow me to organize part of the file system as one physical file. I have ruled out Apache VFS, because I need an unique format which will be hard to ...
2
votes
1answer
217 views

lookup a directory in kernel module

I am writing a stackable file system which would rename unlinked files to a particular folder say abc by default. So as any file /xyz is unlinked its renamed to /abc/xyz. I want to do this by ...

1 2