我有一个Angular 6项目,我想在项目组件中重命名文件夹。有没有执行此操作的特定方法,这样我就不会破坏任何内容?还是我在考虑这个问题,而只是重命名文件夹?我正在使用Visual Studio Code作为我的IDE。
答案 0 :(得分:1)
我认为您可以继续对文件夹进行重命名,并且可能对instance
的组件产生唯一的影响(除非您决定也更改组件名称)
例如:
class DataDescriptor(object):
def __init__(self, attribute):
self.default = 100
self.attribute = attribute
def __get__(self, instance, owner):
print('Getting the value of', self.attribute,
'__get__ of Data descriptor invoked')
return instance.__dict__.get(self.attribute, self.default)
def __set__(self, instance, value=200):
if value > 0:
print('__set__ of Data descriptor invoked')
instance.__dict__[self.attribute] = value
else:
sys.exit('Negative value not allowed')
您始终在IDE中全局搜索文件夹的先前名称,然后替换它。