in Education by
I have multiple parts of a single file which I want a 3rd party c++/c# plugin to read as a single file. Basically, when the plugin file reader gets to the end of one file-part, I want it to continue to the next one. (For anyone interested, the plugin is Aforge.Net FFMpeg, and I am trying to import VOB files) It looks like quite a task to reprogram the plugin. An alternative solution is to copy the file parts to a concatenated file, but this is slow because I am dealing with many GBs of data. Is it possible to use a file system hard link to point to multiple files? Or is there some other way to 'fake' a concatenated file? Using command line FFMpeg I can use 'type' to live stream a concatenate file in, but I can't figure out how to achieve this in c# with this plugin. I am on Windows 7. JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
A hard link can only reference one I-node, so a hard link won't help. A FIFO, or named pipe, however, will. In a UNIX shell, you can do: $ mkfifo catenated $ cat a b c >catenated & A program that reads from the file "catenated" will now get all three files (a, b and c) concatenated together. Once the data from all three files have been read, the "cat" program will terminate. Microsoft Windows also has such features (see named pipe). Note that a pipe is not seekable. If the program reading the concatenated data tries to seek, it will fail. If the concatenation needs to be seekable, something more complicated (virtual filesystem? FUSE?) needs to be used.

Related questions

0 votes
    I'm very excited about the new "local F specs" coming in V6R1 - see: http://www.mcpressonline. ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 5, 2022 in Education by JackTerrance
0 votes
    Which function is used to simulate discrete uniform random variables? (a) Sample (b) Simple (c) Function (d ... of R Programming Select the correct answer from above options...
asked Feb 11, 2022 in Education by JackTerrance
0 votes
    How can I merge and combine two values in R? For instance: tmp = cbind("QWE", "RT") tmp # [,1] [,2] # ... ,RT" How can I perform this? Select the correct answer from above options...
asked Jan 24, 2022 in Education by JackTerrance
0 votes
    How can we create a symbolic link to file? (a) createLink() (b) createSymLink() (c) createSymbolicLink() ( ... & Miscellaneous of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    What is protocol used by WWW to create display and link hypertext file Select the correct answer from above options...
asked Dec 25, 2021 in Education by JackTerrance
0 votes
    How can we create a symbolic link to file? (a) createLink() (b) createSymLink() (c) ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
0 votes
    webbrowser.open('https://api.WhatsApp.com/send?phone=number') I want to send WhatsApp messages to numbers without ... in this link. Select the correct answer from above options...
asked Jan 19, 2022 in Education by JackTerrance
0 votes
    how can you create a link to your emali address using (A) tag Select the correct answer from above options...
asked Dec 15, 2021 in Education by JackTerrance
0 votes
    The way dashboard using IL (information link)....
asked Nov 21, 2020 in Technology by JackTerrance
0 votes
    1. When you delete a file from a hard disk, the deleted file is stored in the Recycle Bin where you can ... Recycle Bin (b) Computer Select the correct answer from above options...
asked Dec 15, 2021 in Education by JackTerrance
0 votes
    Which term describes an operating system distribution specifically designed to run the entire machine from an optical disc ... drive? Select the correct answer from above options...
asked Dec 29, 2021 in Education by JackTerrance
0 votes
    For a 10Mbps Ethernet link, if the length of the packet is 32bits, the transmission delay is ____________ (in microseconds). A. 3.2 B. 32 C. 0.32 D. 320...
asked Jan 8, 2023 in Technology by JackTerrance
0 votes
    State whether the following statement are true or false. Give reasons for your answer. Political parties act as ... between government and people. Please answer the above question....
asked Aug 14, 2022 in Education by JackTerrance
0 votes
    I am working on porting an app of mine that I made in OS X to Windows 10. I'm using visual ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 14, 2022 in Education by JackTerrance
...