Latest Revisions of documents

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Latest Revisions of documents

    I have a collection of documents that are continueously being added to and
    revised. When a user uploads a file, I want to search the collection to see if
    the document already exist. If it does, move the old revsioin to a different
    location, then insert the new revison. How would I go about doing this.
    Sample code or examples?

    Chikowski Guest

  2. Similar Questions and Discussions

    1. setting tab order revisions
      Acrobat 9 has a much better method of dragging the tab order now - very slick! Jon
    2. Logging Revisions
      Hello everyone, If someone out there knows of a program or a feature incuded with ID that makes Revision Logging simple, please post it. Thank...
    3. Coverting Indesign 2.0 documents to Microsoft Word xp documents
      How would you go about converting indesign documents to microsoft word documents? Is there a way to convert them? Thanks for any help that you can...
    4. Desperate to convert Word documents into PDF documents
      This describes my problem. I have Windows XP Home and Word 2002. The problem seems to have begun to occur after I downloaded updates to 5.0 from the...
    5. What is the latest PS 8 news?
      When should we expect a release date? How about Illustrator 11, and InDesign 3? -- Seth Meranda smeranda<AT>unlnotes<DOT>unl<DOT>edu
  3. #2

    Default Re: Latest Revisions of documents

    Use the FileExists() function, if it does use cffile action="move" to relocate
    the original then use cffile action="upload" to write the new file. If it
    doesn't exist then just cffile action="upload".

    HTH

    Stressed_Simon Guest

  4. #3

    Default Re: Latest Revisions of documents

    I would also user the cffile action = "rename" after moving the file to keep the version control by adding a _ver1,Ver2, Ver3 etc...
    jorgepino Guest

  5. #4

    Default Re: Latest Revisions of documents

    What about if the name of the document is different? Is there a way to check the document title for example?
    Chikowski Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139