ftp text file to Variable

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

  1. #1

    Default Re: ftp text file to Variable

    try this:

    <cfftp action="GetFile" transfermode="Auto" stoponerror="yes"
    remotefile=#archivo# localfile="c:\Temp.txt" connection=#conector#
    failifexists="no">

    <cffile action="read" file="c:\Temp.txt" variable="myvar">

    now #myvar# is your variable..

    adonis1976 Guest

  2. Similar Questions and Discussions

    1. how to split continuous text in a variable into two text-variables...?
      Hi, i have a little problem. i need to split a continuous text-variable into two text-variables but in whole words! so i can show these two...
    2. How to put a variable value into a text file
      Hi all: I'm trying to put a variable value into a text file. I've tried a few things with no success. Anyone know how to do this ? Is it...
    3. load text into variable
      Is it possible to load an html document into a variable?
    4. Dynamic Text Variable
      Yes. Set up a field so that a script will change whatever variable the dynamic text field is linked to.
    5. Text box value, backslash, and PHP variable
      I have a form with a textbox. On submitting the form I read the textbox value into a php variable. If the value in the text box contained a ' or "...
  3. #2

    Default Re: ftp text file to Variable

    is there another viable solution ?
    AcidGuy 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