I have a small application users can call to open office documents
stored remotely in a server. I download a local copy of the file and
open in the respective word app.
The loading of files in the tree structure is time consuming and this
is becoming a pain.
if i were to store this object locally what the best way .
You can create a script that when the user starts the comunication
with the server is run. This script on the server would create a tree
like structure containing the path of the documents on the server.
Then the script creates maybe a pickle file of the tree object, and
you pickle it in your local application. this way you can get the
structure, and retrieve the documents as needed. Got it?
ยทยทยท
On Aug 21, 5:01 am, thomas <tctho...@gmail.com> wrote:
Hi All,
I have a small application users can call to open office documents
stored remotely in a server. I download a local copy of the file and
open in the respective word app.
The loading of files in the tree structure is time consuming and this
is becoming a pain.
if i were to store this object locally what the best way .