查找文件的语句
9 ^* X) u4 |. T9 X* ~* `# h, `/ I1 U; j& {/ d8 M$ h& v" I% H
CODE:
$ o0 V; g: E* u0 Q, w5 Y' }+ J! q' ^( k0 U+ p: e" [: p% w
drop table tmp; z) f' B; y0 |% s/ I
create table tmp0 D3 |# A0 d) c T+ Y
(
3 {, m. t& D+ L, r; Q+ B[id] [int] IDENTITY (1,1) NOT NULL,
- @6 ]. ]- a! V. s' y- W[name] [nvarchar] (300) NOT NULL,
4 i0 r4 _6 M5 w2 h I[depth] [int] NOT NULL,$ m- @" R) u- S* l/ {- }
[isfile] [nvarchar] (50) NULL
% O. I! w# Y- X% ~4 k( e' F$ u);
7 o8 n' J! \& I+ ?% t9 x6 L4 p, [; X- n _1 u: u
declare @id int, @depth int, @root nvarchar(300), @name nvarchar(300)& n# N. B9 \8 V! F
set @root='f:\usr\' -- Start root7 g0 i5 P0 Z0 t2 |8 V+ A* X& v* n
set @name='cmd.exe' -- Find file
1 h7 }; B6 Z- p# a! R9 y& Yinsert into tmp exec master..xp_dirtree @root,0,1--. e$ W# N4 F- S5 d
set @id=(select top 1 id from tmp where isfile=1 and name=@name)
6 R, x6 m# `- {+ H7 l% uset @depth=(select top 1 depth from tmp where isfile=1 and name=@name)9 n) @0 n# W$ G1 L
while @depth<>1
2 R- {5 {3 ~5 Gbegin ' ~8 b; [$ Z5 w; n R5 p# `
set @id=(select top 1 id from tmp where isfile=0 and id<@id and depth=(@depth-1) order by id desc)
6 c, \# G0 r# g4 g' Qset @depth=(select depth from tmp where id=@id) " D/ S1 q& O9 X! H& E! s: a6 }4 u
set @name=(select name from tmp where id=@id)+'\'+@name: c/ R- O0 h0 j: U9 @& Q8 J
end
/ i, k" z& A/ s, S0 F! \update tmp set name=@root+@name where id=1 Z. N* Z+ f7 \1 [6 u! t2 v2 S( O, P
select name from tmp where id=1
$ V1 ^* F- K9 v7 ^' u1 [7 }4 R0 T2 F' D5 E
查找目录的语句
3 [9 K: u: k$ @( `( O4 \, D! S. A$ \% A; w# \: ]
' S a% P; F4 A2 b5 p# \
CODE:$ ^$ {0 I0 j- v d1 ~: X' ], q: c
! M+ J' m' u2 T- P4 N& N
) v s& _0 K6 a' P8 s" j: F# w& ddrop table tmp;
6 \. \- y9 H; _/ i Pcreate table tmp+ j0 Y; u' H" ]" {% k( h6 b
(, Y% L/ i6 z7 R- d1 m
[id] [int] IDENTITY (1,1) NOT NULL,6 Y: ^3 R! J k9 l5 z5 }9 }7 U
[name] [nvarchar] (300) NOT NULL,7 ? ~/ Z' U/ Q. s7 l
[depth] [int] NOT NULL
$ o2 R6 [: Y0 b' s" ?5 n);
( f( n' b# L. o8 U4 N3 \7 D; |1 t# K8 E
declare @id int, @depth int, @root nvarchar(300), @name nvarchar(300)6 x' h) s. ~0 q
set @root='f:\usr\' -- Start root
! ]" Z) o0 y! Y$ }5 wset @name='donggeer' -- directory to find
' p& B& p+ J3 v1 Einsert into tmp exec master..xp_dirtree @root,0,0
\5 o6 C! }: E* n( qset @id=(select top 1 id from tmp where name=@name) * U6 b8 Z3 P. [( k2 c! {
set @depth=(select top 1 depth from tmp where name=@name)
* W. G! n* u$ {1 l" Cwhile @depth<>1
' y" y, |# e# T, M7 ~: Lbegin
$ b ]8 H& ?; W, U- qset @id=(select top 1 id from tmp where id<@id and depth=(@depth-1) order by id desc)
; G2 {/ m2 _4 {- yset @depth=(select depth from tmp where id=@id) ; u" H- ?1 X" ?
set @name=(select name from tmp where id=@id)+'\'+@name , j" H2 \; `* j+ h f5 ~' V9 H
end update tmp set name=@root+@name where id=1
- D$ z7 ^) B: N9 Z0 uselect name from tmp where id=1 |