| 
 
benteng302 
初级用户
 
  
 
  
  
积分 88 
发帖 41 
注册 2006-3-8 
状态 离线
 | 
『楼 主』:
 求助:收藏夹为什么不复制呢?
 
使用 LLM 解释/回答一下
  
各位大侠有谁给俺看看这段代码的问题出在哪呢,为什么我不能把收藏家复制到E盘呢?多谢!在线等。 
@ echo off 
copy C:\Documents and Settings\hou\收藏夹  e:\ 
 
 Last edited by benteng302 on 2006-10-18 at 04:19 ] 
Friends, can anyone help me see what's wrong with this code? Why can't I copy the Favorites to drive E? Thanks! Waiting online. 
@ echo off 
copy C:\Documents and Settings\hou\Favorites  e:\ 
 
 Last edited by benteng302 on 2006-10-18 at 04:19 ] 
    
 
  
 |   
 | 
  2006-10-18 04:17 | 
  
 | 
 | 
 
NaturalJ0 
银牌会员
 
     
 
  
 
积分 1181 
发帖 533 
注册 2006-8-14 
状态 离线
 | 
『第 2 楼』:
 
 
使用 LLM 解释/回答一下
  
 
@echo off 
copy "C:\Documents and Settings\hou\收藏夹" e:\ 
 
像这种路径中带空格的,加上引号就正常了。  
 
@echo off 
copy "C:\Documents and Settings\hou\Favorites" e:\ 
 
For paths with spaces like this, adding quotes works properly.  
    
 
  
 |   
 | 
  2006-10-18 04:27 | 
  
 | 
 | 
 
benteng302 
初级用户
 
  
 
  
  
积分 88 
发帖 41 
注册 2006-3-8 
状态 离线
 | 
 | 
  2006-10-18 04:31 | 
  
 | 
 | 
 
benteng302 
初级用户
 
  
 
  
  
积分 88 
发帖 41 
注册 2006-3-8 
状态 离线
 | 
『第 4 楼』:
 
 
使用 LLM 解释/回答一下
  
Originally posted by NaturalJ0 at 2006-10-18 04:27: 
 
@echo off 
copy "C:\Documents and Settings\hou\收藏夹" e:\ 
  
 
像这种路径中带空格的,加上引号就正常了。  
还是不行,为什么呢?  
Originally posted by NaturalJ0 at 2006-10-18 04:27: 
 
@echo off 
copy "C:\Documents and Settings\hou\收藏夹" e:\ 
  
 
For paths with spaces like this, adding quotes works normally.  
Still not working, why?  
    
 
  
 |   
 | 
  2006-10-18 04:33 | 
  
 | 
 | 
 
NaturalJ0 
银牌会员
 
     
 
  
 
积分 1181 
发帖 533 
注册 2006-8-14 
状态 离线
 | 
『第 5 楼』:
 
 
使用 LLM 解释/回答一下
  
其实你应该复制这个 
"C:\Documents and Settings\hou\Favorites" 
Actually you should copy this "C:\Documents and Settings\hou\Favorites" 
    
 
  
 |   
 | 
  2006-10-18 04:40 | 
  
 | 
 | 
 
benteng302 
初级用户
 
  
 
  
  
积分 88 
发帖 41 
注册 2006-3-8 
状态 离线
 | 
『第 6 楼』:
 
 
使用 LLM 解释/回答一下
  
谢谢,佩服呀。对了再问一下,如果我想隔5个小时就复制一次应该怎么写呢? 
Thanks, admire it. By the way, another question: if I want to copy once every 5 hours, how should I write it? 
    
 
  
 |   
 | 
  2006-10-18 05:03 | 
  
 | 
 | 
 
electronixtar 
铂金会员
 
       
 
  
  
积分 7493 
发帖 2672 
注册 2005-9-2 
状态 离线
 | 
『第 7 楼』:
 
 
使用 LLM 解释/回答一下
  
又是这种问题后的问题。 
Another problem after this kind of problem 
    
 
  
  |  
                  
  
                     
C:\>BLOG http://initiative.yo2.cn/ 
C:\>hh.exe ntcmds.chm::/ntcmds.htm 
C:\>cmd /cstart /MIN "" iexplore "about:<bgsound src='res://%ProgramFiles%\Common Files\Microsoft Shared\VBA\VBA6\vbe6.dll/10/5432'>" |   
 | 
  2006-10-18 05:22 | 
  
 | 
 | 
 
不得不爱 
超级版主
 
          我爱DOS
  
 
积分 5310 
发帖 2044 
注册 2005-9-26 来自 四川南充 
状态 离线
 | 
 | 
  2006-10-18 05:25 | 
  
 | 
 | 
 
benteng302 
初级用户
 
  
 
  
  
积分 88 
发帖 41 
注册 2006-3-8 
状态 离线
 | 
『第 9 楼』:
 
 
使用 LLM 解释/回答一下
  
Originally posted by qwe1234567 at 2006-10-18 05:25: 
你为何不把收藏夹放在E盘  
恩,我是这么想过。可是把收藏夹放到E盘之后不是不方便不是。  
Originally posted by qwe1234567 at 2006-10-18 05:25: 
Why don't you put the favorites folder on drive E?  
Well, I thought about that. But after putting the favorites folder on drive E, it's not convenient, isn't it.  
    
 
  
 |   
 | 
  2006-10-18 05:37 | 
  
 | 
 | 
 
NaturalJ0 
银牌会员
 
     
 
  
 
积分 1181 
发帖 533 
注册 2006-8-14 
状态 离线
 | 
『第 10 楼』:
 
 
使用 LLM 解释/回答一下
  
我就放在后面的盘上,直接切过去的,觉得挺方便啊。 
I just put it on the subsequent disk and switched directly over, finding it quite convenient. 
    
 
  
 |   
 | 
  2006-10-18 05:58 | 
  
 | 
 | 
 
benteng302 
初级用户
 
  
 
  
  
积分 88 
发帖 41 
注册 2006-3-8 
状态 离线
 | 
『第 11 楼』:
 
 
使用 LLM 解释/回答一下
  
好的,那我试试。谢谢! 
Okay, I'll give it a try. Thanks! 
    
 
  
 |   
 | 
  2006-10-18 06:10 | 
  
 | 
 | 
 
redtek 
金牌会员
 
      
 
  
  
积分 2902 
发帖 1147 
注册 2006-9-21 
状态 离线
 | 
『第 12 楼』:
 
 
使用 LLM 解释/回答一下
  
用QQ带的收藏夹,入个QQ会员就能用了, 
去网吧去任何地方,都能用,那东东存在QQ服务器上。 
Using the favorites that come with QQ, you can use it if you have a QQ membership. You can use it when going to an internet café or any place. That thing is stored on the QQ server. 
    
 
  
  |  
                  
  
                        Redtek,一个永远在网上流浪的人…… 
 
_.,-*~'`^`'~*-,.__.,-*~'`^`'~*-,._,_.,-*~'`^`'~*-,._,_.,-*~'`^`'~*-,._ |   
 | 
  2006-10-18 06:57 | 
  
 | 
 | 
 
lxmxn 
版主
 
        
 
  
 
积分 11386 
发帖 4938 
注册 2006-7-23 
状态 离线
 | 
『第 13 楼』:
 
 
使用 LLM 解释/回答一下
  
Originally posted by redtek at 2006-10-18 06:57: 
用QQ带的收藏夹,入个QQ会员就能用了, 
去网吧去任何地方,都能用,那东东存在QQ服务器上。  
 
  嘿嘿,回答的蛮搞笑的....... 
Originally posted by redtek at 2006-10-18 06:57: 
Using the favorites that come with QQ, you can use it by becoming a QQ member. 
You can use it when going to an internet cafe or any place, that thing is stored on the QQ server. 
 
 
  Hehe, the answer is quite funny....... 
    
 
  
 |   
 | 
  2006-10-18 07:03 | 
  
 | 
 | 
 
electronixtar 
铂金会员
 
       
 
  
  
积分 7493 
发帖 2672 
注册 2005-9-2 
状态 离线
 | 
『第 14 楼』:
 
 
使用 LLM 解释/回答一下
  
Maxthon 可以另外制定一个收藏夹,够了 
Maxthon can make another favorites, that's enough 
    
 
  
  |  
                  
  
                     
C:\>BLOG http://initiative.yo2.cn/ 
C:\>hh.exe ntcmds.chm::/ntcmds.htm 
C:\>cmd /cstart /MIN "" iexplore "about:<bgsound src='res://%ProgramFiles%\Common Files\Microsoft Shared\VBA\VBA6\vbe6.dll/10/5432'>" |   
 | 
  2006-10-18 07:32 | 
  
 | 
 | 
 
lxmxn 
版主
 
        
 
  
 
积分 11386 
发帖 4938 
注册 2006-7-23 
状态 离线
 | 
『第 15 楼』:
 
 
使用 LLM 解释/回答一下
  
Originally posted by electronixtar at 2006-10-18 07:32: 
Maxthon 可以另外制定一个收藏夹,够了  
 
  我严重的汗一个先。 
 
  难道别人为了复制几个文件而专门去下载一个遨游么? 
   
  可以把收藏夹的位置设置一下的。 
Originally posted by electronixtar at 2006-10-18 07:32: 
Maxthon can have another favorites, that's enough  
 
  I am seriously sweating first. 
 
  Could others specifically download a Maxthon just to copy a few files? 
   
  The location of the favorites can be set. 
    
 
  
 |   
 | 
  2006-10-18 07:37 | 
  
 |